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 a2e35c9 commit 3900f12Copy full SHA for 3900f12
.github/workflows/deploy.yml
@@ -32,10 +32,10 @@ jobs:
32
password: ${{ secrets.GITHUB_TOKEN }}
33
34
- name: Tag image for github container repository with commit SHA
35
- run: 'docker tag controller:latest $GITHUB_REPOSITORY:${{env.GITHUB_SHA}}'
+ run: 'docker tag controller:latest $GITHUB_REPOSITORY:$GITHUB_SHA'
36
37
- name: Push image for github container repository with commit SHA
38
- run: 'docker push controller:latest $GITHUB_REPOSITORY:${{env.GITHUB_SHA}}'
+ run: 'docker push controller:latest $GITHUB_REPOSITORY:$GITHUB_SHA'
39
40
- name: Tag image for github container repository with latest
41
run: 'docker tag controller:latest $GITHUB_REPOSITORY:latest'
0 commit comments