Skip to content

Commit b5071fd

Browse files
committed
Try again
1 parent b77dc46 commit b5071fd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/docker-registry-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: docker/build-push-action@v2
2020
with:
2121
file: ./Dockerfile.docker
22-
tags: msyea/ubuntu-docker:${GIT_SHORT_SHA}
22+
tags: msyea/ubuntu-docker:${{ env.GIT_SHORT_SHA }}
2323
push: true
2424
push_dind:
2525
needs: push_docker
@@ -38,9 +38,9 @@ jobs:
3838
uses: docker/build-push-action@v2
3939
with:
4040
file: ./Dockerfile.dind
41-
tags: msyea/ubuntu-dind:${GIT_SHORT_SHA}
41+
tags: msyea/ubuntu-dind:${{ env.GIT_SHORT_SHA }}
4242
push: true
43-
build-args: TAG=${GIT_SHORT_SHA}
43+
build-args: TAG=${{ env.GIT_SHORT_SHA }}
4444
push_gha:
4545
needs: [push_docker, push_dind]
4646
name: Push GitHub Actions runner image to Docker Hub
@@ -57,6 +57,6 @@ jobs:
5757
- name: Push to Docker Hub
5858
uses: docker/build-push-action@v2
5959
with:
60-
tags: msyea/github-actions-runner:${GIT_SHORT_SHA}
60+
tags: msyea/github-actions-runner:${{ env.GIT_SHORT_SHA }}
6161
push: true
62-
build-args: TAG=${GIT_SHORT_SHA}
62+
build-args: TAG=${{ env.GIT_SHORT_SHA }}

0 commit comments

Comments
 (0)