Skip to content

Commit

Permalink
Move env variable to step output
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly committed May 1, 2024
1 parent b71277e commit 32afeb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
echo "build=$build" >> $GITHUB_OUTPUT
echo "tag_name=$tag_name" >> $GITHUB_OUTPUT
echo "image_name=$image_name" >> $GITHUB_OUTPUT
echo "container_name=$image_name:$tag_name" >> $GITHUB_OUTPUT
echo "container_name=${{ env.REGISTRY }}/$image_name:$tag_name" >> $GITHUB_OUTPUT
- name: Set up Docker Buildx
uses: docker/[email protected]
if: steps.create-container-info.outputs.build == 'true'
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
needs: [list-manifests, build-container]
runs-on: ubuntu-latest
container:
image: ${{ env.REGISTRY }}/${{ needs.build-container.outputs.container_name }}
image: ${{ needs.build-container.outputs.container_name }}
options: --user root
strategy:
matrix:
Expand Down

0 comments on commit 32afeb4

Please sign in to comment.