From 003494008226f9e85e1d96fa18c94bbb00221f51 Mon Sep 17 00:00:00 2001 From: mcrcortex <18544518+MCRcortex@users.noreply.github.com> Date: Mon, 23 Jun 2025 20:30:24 +1000 Subject: [PATCH] manual artifact workflow --- .github/workflows/manual-artifact.yml | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/manual-artifact.yml diff --git a/.github/workflows/manual-artifact.yml b/.github/workflows/manual-artifact.yml new file mode 100644 index 00000000..15bb2960 --- /dev/null +++ b/.github/workflows/manual-artifact.yml @@ -0,0 +1,33 @@ +name: manual-artifact + +on: [ workflow_dispatch ] +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout sources + uses: actions/checkout@v4 + + - name: Verify wrapper + uses: gradle/actions/wrapper-validation@v3 + + - name: Setup Java + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 21 + + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + with: + cache-read-only: false + + - name: Gradle build + run: ./gradlew build + + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: voxy-artifacts + path: build/libs/*.jar \ No newline at end of file