Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Hummel009 committed Jan 11, 2024
1 parent 62eec72 commit 6afd206
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Java CI with Gradle
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@main
- name: Set up JDK 21
uses: actions/setup-java@main
with:
java-version: '21'
distribution: temurin
- name: Build with Gradle
uses: gradle/gradle-build-action@main
with:
arguments: build
- name: Upload Artifact
uses: actions/upload-artifact@main
with:
name: compiled-artifact
path: |
./appKotlinNative/build/bin/mingwX64/releaseExecutable/*.exe
./appKotlinJvm/build/libs/*.jar
./appJava/build/libs/*.jar

0 comments on commit 6afd206

Please sign in to comment.