Skip to content

Commit a0c6811

Browse files
[Github] Fix container push job
This patch fixes a typo impacting functionality and also adds the relevant variables to the step outputs list so they can actually get picked up by the push container step.
1 parent a3beb7d commit a0c6811

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ jobs:
2323
runs-on: depot-ubuntu-22.04-16
2424
outputs:
2525
container-name: ${{ steps.vars.outputs.container-name }}
26+
container-name-agent: ${{ steps.vars.outputs.container-name-agent }}
2627
container-name-tag: ${{ steps.vars.outputs.container-name-tag }}
28+
container-name-agent-tag: ${{ steps.vars.outputs.container-name-agent-tag }}
2729
container-filename: ${{ steps.vars.outputs.container-filename }}
2830
steps:
2931
- name: Checkout LLVM
@@ -90,6 +92,6 @@ jobs:
9092
podman push ${{ needs.build-ci-container.outputs.container-name-tag }}
9193
podman push ${{ needs.build-ci-container.outputs.container-name }}:latest
9294
93-
podman tag ${{ needs.build-ci-container.outpus.container-name-agent-tag }} ${{ needs.build-ci-container.outputs.container-name-agent }}:latest
95+
podman tag ${{ needs.build-ci-container.outputs.container-name-agent-tag }} ${{ needs.build-ci-container.outputs.container-name-agent }}:latest
9496
podman push ${{ needs.build-ci-container.outputs.container-name-agent-tag }}
9597
podman push ${{ needs.build-ci-container.outputs.container-name-agent }}:latest

0 commit comments

Comments
 (0)