due to using forgejo actions some fillins have to be made
Some checks failed
build and publish docker image / deploy / build (push) Failing after 2m8s
Some checks failed
build and publish docker image / deploy / build (push) Failing after 2m8s
This commit is contained in:
parent
0816ba7ee9
commit
55dfc95a78
7
.github/workflows/build_deploy_dev.yml
vendored
7
.github/workflows/build_deploy_dev.yml
vendored
|
@ -13,6 +13,11 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: https://github.com/actions/checkout@v4
|
- uses: https://github.com/actions/checkout@v4
|
||||||
|
with:
|
||||||
|
repository: 'learningpulse/server'
|
||||||
|
ref: 'dev'
|
||||||
|
token: '${{ secrets.token }}'
|
||||||
|
|
||||||
- name: Set up JDK 21
|
- name: Set up JDK 21
|
||||||
uses: https://github.com/actions/setup-java@v3
|
uses: https://github.com/actions/setup-java@v3
|
||||||
with:
|
with:
|
||||||
|
@ -20,7 +25,7 @@ jobs:
|
||||||
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.token }} clean compile jib:build -e
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in a new issue