Skip to content

Commit

Permalink
Fix ENVs
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Sep 6, 2024
1 parent 7397d72 commit 2b2b20b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,10 @@ runs:
dockerfile: ${{ steps.vars.outputs.build_file }}
shell: bash
run: |
echo "BUILDER_IMAGE=ghcr.io/${{ github.repository }}/${{ github.package }}:${{ inputs.tag }}" >> ${{ env.dockerfile }}
echo "BUILDER_PACKAGE=${{ inputs.package }}" >> ${{ env.dockerfile }}
echo "BUILDER_REPO=${{ github.repository }}" >> ${{ env.dockerfile }}
echo "BUILDER_TAG=${{ inputs.tag }}" >> ${{ env.dockerfile }}
echo "ENV BUILDER_IMAGE=ghcr.io/${{ github.repository }}/${{ github.package }}:${{ inputs.tag }}" >> ${{ env.dockerfile }}
echo "ENV BUILDER_PACKAGE=${{ inputs.package }}" >> ${{ env.dockerfile }}
echo "ENV BUILDER_REPO=${{ github.repository }}" >> ${{ env.dockerfile }}
echo "ENV BUILDER_TAG=${{ inputs.tag }}" >> ${{ env.dockerfile }}
- name: Set up Docker Buildx
if: steps.build.outputs.triggered == 'true'
Expand Down

0 comments on commit 2b2b20b

Please sign in to comment.