Skip to content

Commit af20aff

Browse files
[Github] Fix windows container push (#119916)
The windows container push was not tested in the pull request and had a couple of typos that prevented it from functioning. This patch fixes that so we can actually push the container to GHCR.
1 parent 22266bc commit af20aff

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: .github/workflows/build-ci-container-windows.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ jobs:
6868
name: container
6969
- name: Push Container
7070
run: |
71-
docker load -i ${{ needs.build-ci-container.outptus.container-filename }}
72-
docker tag ${{ steps.vars.outputs.container-name-tag }} ${{ steps.vars.outputs.container-name }}:latest
71+
docker load -i ${{ needs.build-ci-container-windows.outputs.container-filename }}
72+
docker tag ${{ needs.build-ci-container-windows.outputs.container-name-tag }} ${{ needs.build-ci-container-windows.outputs.container-name }}:latest
7373
docker login -u ${{ github.actor }} -p $env:GITHUB_TOKEN ghcr.io
74-
docker push ${{ needs.build-ci-container.outputs.container-name-tag }}
75-
docker push ${{ needs.build-ci-container.outputs.container-name }}:latest
74+
docker push ${{ needs.build-ci-container-windows.outputs.container-name-tag }}
75+
docker push ${{ needs.build-ci-container-windows.outputs.container-name }}:latest

0 commit comments

Comments
 (0)