From cfbfea51d7a20d3b89a26c2a3972301c8cb1cac7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobi=20Sch=C3=A4fer?= Date: Sat, 18 May 2024 22:48:24 +0200 Subject: [PATCH] Create staging.yml --- .github/workflows/staging.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/staging.yml diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml new file mode 100644 index 00000000..da0f690c --- /dev/null +++ b/.github/workflows/staging.yml @@ -0,0 +1,27 @@ +name: Deploy to Antville.org development environment + +on: + workflow_dispatch + +jobs: + build: + runs-on: ubuntu-latest + + environment: + name: staging + url: https://antville-test.click + + steps: + - uses: actions/checkout@v4 + + - name: Set up Java + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 21 + + - name: Set up Gradle + uses: gradle/actions/setup-gradle@v3 + + - name: Build with Gradle + run: ./gradlew installDist