Skip to content

refactor: Bump 3 in kotlin #408

refactor: Bump 3 in kotlin

refactor: Bump 3 in kotlin #408

Workflow file for this run

name: Java CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
if: startsWith(github.event.head_commit.message, '[CI skip]') == false
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Setup gradle
uses: gradle/actions/setup-gradle@v4
- name: Build with Gradle
run: ./gradlew build
- name: Get build artifact ready
run: mkdir staging && cp build/libs/*.jar staging
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
name: preview-build
path: staging