Skip to content

Commit 22266bc

Browse files
authored
workflows/build-ci-container: Fix typos in variables (#119943)
This was preventing the containers from being pushed to the registry.
1 parent d73ef97 commit 22266bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ jobs:
8080

8181
- name: Push Container
8282
run: |
83-
podman load -i ${{ needs.build-ci-container.outptus.container-filename }}
84-
podman tag ${{ steps.vars.outputs.container-name-tag }} ${{ steps.vars.outputs.container-name }}:latest
83+
podman load -i ${{ needs.build-ci-container.outputs.container-filename }}
84+
podman tag ${{ needs.build-ci-container.outputs.container-name-tag }} ${{ needs.build-ci-container.outputs.container-name }}:latest
8585
podman login -u ${{ github.actor }} -p $GITHUB_TOKEN ghcr.io
8686
podman push ${{ needs.build-ci-container.outputs.container-name-tag }}
8787
podman push ${{ needs.build-ci-container.outputs.container-name }}:latest

0 commit comments

Comments
 (0)