Docker login during smoke test app creation (#949)

This commit is contained in:
Nikita Salnikov-Tarnovski 2020-08-12 21:09:55 +03:00 committed by GitHub
parent e9d456d616
commit 8bdde56d06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -22,6 +22,9 @@ jobs:
with:
job-id: play-smoke
- name: Login to GitHub Package Registry
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login docker.pkg.github.com -u ${{ github.repository }} --password-stdin
- name: Build Docker Image
run: |
./gradlew jib -PtargetJDK=8 -Djib.httpTimeout=120000 -Djib.console=plain

View File

@ -22,6 +22,9 @@ jobs:
with:
job-id: springboot-smoke
- name: Login to GitHub Package Registry
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login docker.pkg.github.com -u ${{ github.repository }} --password-stdin
- name: Build Docker Image
run: |
./gradlew jib -PtargetJDK=8 -Djib.httpTimeout=120000 -Djib.console=plain