Piped-Backend/.github/workflows/fat-build.yml

25 lines
517 B
YAML
Raw Normal View History

2023-08-14 15:56:52 +05:30
name: Fat JAR Build
on:
workflow_call:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2023-08-14 15:56:52 +05:30
2023-09-20 04:27:44 +05:30
- name: set up JDK 21
uses: actions/setup-java@v4
2023-08-14 15:56:52 +05:30
with:
2023-09-20 04:27:44 +05:30
java-version: 21
2023-09-20 05:24:58 +05:30
distribution: zulu
2023-08-14 15:56:52 +05:30
cache: "gradle"
- name: Run Build
run: ./gradlew shadowJar
- run: mv build/libs/piped-*-all.jar piped.jar
- uses: actions/upload-artifact@v3
with:
name: piped.jar
path: piped.jar