Skip to content

Bump org.jetbrains.kotlinx:kotlinx-serialization-json #195

Bump org.jetbrains.kotlinx:kotlinx-serialization-json

Bump org.jetbrains.kotlinx:kotlinx-serialization-json #195

Workflow file for this run

name: CI
on:
push:
paths:
- '**'
branches:
- '**'
tags:
- '*.*.*'
workflow_dispatch:
env:
ARTIFACT_NAME: ask-ai
jobs:
build:
name: Build
runs-on: ubuntu-22.04
permissions:
contents: read
packages: read
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Set Gradle permissions
run: chmod +x gradlew
- name: Build project
uses: gradle/gradle-build-action@v3
env:
GHPKG_USER: ${{ github.repository_owner }}
GHPKG_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
arguments: build
cache-disabled: true
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: ${{ env.ARTIFACT_NAME }}
path: build/libs/*.jar
release:
name: Release
runs-on: ubuntu-22.04
needs: build
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
permissions:
contents: write
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Download build artifact
uses: actions/download-artifact@v3
with:
name: ${{ env.ARTIFACT_NAME }}
path: artifact
- name: Create draft release
uses: softprops/action-gh-release@v2
with:
draft: true
tag_name: ${{ github.ref_name }}
files: artifact/*.jar
token: ${{ secrets.GITHUB_TOKEN }}