CI to build the project jar
This commit is contained in:
parent
12d4a0cf68
commit
5cbf514921
23
.github/workflows/build.yml
vendored
Normal file
23
.github/workflows/build.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user