ref to github for actions
Some checks failed
build and publish docker image / deploy / build (push) Failing after 2m23s
Some checks failed
build and publish docker image / deploy / build (push) Failing after 2m23s
aslo fixed token
This commit is contained in:
parent
6e3904b153
commit
0816ba7ee9
7
.github/workflows/build_deploy_dev.yml
vendored
7
.github/workflows/build_deploy_dev.yml
vendored
|
@ -6,20 +6,21 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: ["dev"]
|
branches: ["dev"]
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: https://github.com/actions/checkout@v4
|
||||||
- name: Set up JDK 21
|
- name: Set up JDK 21
|
||||||
uses: actions/setup-java@v3
|
uses: https://github.com/actions/setup-java@v3
|
||||||
with:
|
with:
|
||||||
java-version: "22"
|
java-version: "22"
|
||||||
distribution: "temurin"
|
distribution: "temurin"
|
||||||
cache: maven
|
cache: maven
|
||||||
- name: Build with Maven
|
- name: Build with Maven
|
||||||
run: mvn -Dtoken=${{secrets.usertoken }} clean compile jib:build -e
|
run: mvn -Dtoken=${{ secrets.usertoken }} clean compile jib:build -e
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in a new issue