dev to basic spring #9
7
.github/workflows/build_deploy_dev.yml
vendored
7
.github/workflows/build_deploy_dev.yml
vendored
|
@ -13,6 +13,11 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: https://github.com/actions/checkout@v4
|
||||
with:
|
||||
repository: 'learningpulse/server'
|
||||
ref: 'dev'
|
||||
token: '${{ secrets.token }}'
|
||||
|
||||
- name: Set up JDK 21
|
||||
uses: https://github.com/actions/setup-java@v3
|
||||
with:
|
||||
|
@ -20,7 +25,7 @@ jobs:
|
|||
distribution: "temurin"
|
||||
cache: 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