Skip to content

Commit

Permalink
upload archive in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
fschrofner committed Feb 27, 2022
1 parent 3cd7287 commit 6611815
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/jar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,10 @@ jobs:
uses: gradle/gradle-build-action@v2

- name: Execute Gradle build
run: ./gradlew shadowJar
run: ./gradlew shadowJar

- name: Archive build
uses: actions/upload-artifact@v2
with:
name: build
path: build/libs/
8 changes: 7 additions & 1 deletion .github/workflows/native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,10 @@ jobs:
uses: gradle/gradle-build-action@v2

- name: Execute Gradle build
run: ./gradlew nativeBinaries
run: ./gradlew nativeBinaries

- name: Archive build
uses: actions/upload-artifact@v2
with:
name: build
path: build/bin/native/hcReleaseExecutable/

0 comments on commit 6611815

Please sign in to comment.