Skip to content

Commit

Permalink
workflows/build-ci-container: Fix typos in variables (#119943)
Browse files Browse the repository at this point in the history
This was preventing the containers from being pushed to the registry.
  • Loading branch information
tstellar authored Dec 14, 2024
1 parent d73ef97 commit 22266bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-ci-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ jobs:

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

0 comments on commit 22266bc

Please sign in to comment.