CI to build the project jar

This commit is contained in:
Thomas Rubini 2022-12-12 21:37:02 +01:00
parent 12d4a0cf68
commit 5cbf514921
No known key found for this signature in database
GPG Key ID: C7D287C8C1CAC373

23
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Build
on:
push:
branches: ['*']
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: |
./gradlew jar
- uses: actions/upload-artifact@v3
with:
name: PackageViewer jar
path: ./build/libs/PackageViewer*.jar