Skip to content

Commit d9074ba

Browse files
[Github] Fix windows container push
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 d1f51c6 commit d9074ba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-ci-container-windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
retention-days: 14
5454

5555
push-ci-container:
56-
if: github.event_name == 'push'
56+
#if: github.event_name == 'push'
5757
needs:
5858
- build-ci-container-windows
5959
permissions:
@@ -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 }}
71+
docker load -i ${{ needs.build-ci-container-windows.outputs.container-filename }}
7272
docker tag ${{ steps.vars.outputs.container-name-tag }} ${{ steps.vars.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)