We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a959aee commit a381b43Copy full SHA for a381b43
.github/workflows/ci.yml
@@ -86,7 +86,9 @@ jobs:
86
87
- name: Build docker image
88
run: |
89
- docker build -t us-east1-docker.pkg.dev/airport-ci-service/airport-ci-service/python-airport-test-server:latest .
90
- docker push us-east1-docker.pkg.dev/airport-ci-service/airport-ci-service/python-airport-test-server:latest
+ IMAGE_NAME="us-east1-docker.pkg.dev/airport-ci-service/airport-ci-service/python-airport-test-server"
+ docker build -t $IMAGE_NAME:latest -t $IMAGE_NAME:${{ github.sha }} .
91
+ docker push $IMAGE_NAME:latest
92
+ docker push $IMAGE_NAME:${{ github.sha }}
93
94
0 commit comments