This commit is contained in:
parent
008ca0f6d4
commit
8860a46462
@ -9,8 +9,9 @@ jobs:
|
|||||||
docker:
|
docker:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
arch: ["ubuntu-latest"]
|
java-version: ["17"]
|
||||||
runs-on: ${{ matrix.arch }}
|
maven-version: ["3.8.5"]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
working-directory: "./API"
|
working-directory: "./API"
|
||||||
@ -20,6 +21,16 @@ jobs:
|
|||||||
# Checkout the repo
|
# Checkout the repo
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
# Setup Java and Maven
|
||||||
|
- name: Set up JDK and Maven
|
||||||
|
uses: s4u/setup-maven-action@v1.12.0
|
||||||
|
with:
|
||||||
|
java-version: ${{ matrix.java-version }}
|
||||||
|
distribution: "zulu"
|
||||||
|
maven-version: ${{ matrix.maven-version }}
|
||||||
|
|
||||||
# Deploy to Dokku
|
# Deploy to Dokku
|
||||||
- name: Deploy to Dokku
|
- name: Deploy to Dokku
|
||||||
|
Reference in New Issue
Block a user