2023-08-14 10:26:52 +00:00
|
|
|
name: Fat JAR Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-04 14:18:06 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-08-14 10:26:52 +00:00
|
|
|
|
2023-09-19 22:57:44 +00:00
|
|
|
- name: set up JDK 21
|
2023-11-30 07:30:27 +00:00
|
|
|
uses: actions/setup-java@v4
|
2023-08-14 10:26:52 +00:00
|
|
|
with:
|
2023-09-19 22:57:44 +00:00
|
|
|
java-version: 21
|
2023-09-19 23:54:58 +00:00
|
|
|
distribution: zulu
|
2023-08-14 10:26:52 +00:00
|
|
|
cache: "gradle"
|
|
|
|
- name: Run Build
|
|
|
|
run: ./gradlew shadowJar
|
|
|
|
- run: mv build/libs/piped-*-all.jar piped.jar
|
2023-12-17 04:58:47 +00:00
|
|
|
- uses: actions/upload-artifact@v4
|
2023-08-14 10:26:52 +00:00
|
|
|
with:
|
|
|
|
name: piped.jar
|
|
|
|
path: piped.jar
|