Skip to content

Commit

Permalink
Trying different syntax for env var interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
dotemacs committed Jul 24, 2024
1 parent 0d4b644 commit 8c4a4b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ jobs:
REPOSITORY: "fb-editor"
IMAGE_TAG: ${{ github.sha }}
run: |
docker build -f docker/web/Dockerfile -t $REPOSITORY .
docker tag $REPOSITORY:$IMAGE_TAG $REGISTRY/$REPOISTORY:$IMAGE_TAG
docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG
docker build -f docker/web/Dockerfile -t ${{ env.REPOSITORY }} .
docker tag ${{ env.REPOSITORY }}:${{ env.IMAGE_TAG }} ${{ env.REGISTRY }}/${{ env.REPOISTORY}}:${{ env.IMAGE_TAG }}
docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:${{ env.IMAGE_TAG }}

0 comments on commit 8c4a4b6

Please sign in to comment.