Create staging.yml
This commit is contained in:
parent
f0ac6cdb5f
commit
db4dfd0ba7
1 changed files with 27 additions and 0 deletions
27
.github/workflows/staging.yml
vendored
Normal file
27
.github/workflows/staging.yml
vendored
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue