From 9c0f6fc5e98512737455969e8a15a4562ae9fbc4 Mon Sep 17 00:00:00 2001 From: Logan Fick Date: Sat, 18 May 2024 21:43:41 -0400 Subject: [PATCH] Added Gitea Actions workflow for building distribution artifact. --- .gitea/workflows/build.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..4bc4942 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,24 @@ +name: Build Distribution +on: [push] + +jobs: + Build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup Java environment + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' + + - name: Build artifact + run: chmod +x ./gradlew && ./gradlew build --no-daemon + + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: Distribution + path: build/distributions/Crabstero.zip