Skip to content

Commit

Permalink
GitHub Actions' env var interpolation is odd, to me
Browse files Browse the repository at this point in the history
It seems that it doesn't like/use curly braces like a $SHELL does.

¯\_(ツ)_/¯
  • Loading branch information
dotemacs committed Jul 24, 2024
1 parent 6350b31 commit c1aa2b2
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 ${REGISTRY}/${REPOSITORY}:${IMAGE_TAG} .
docker tag ${REPOSITORY}:${IMAGE_TAG} ${REGISTRY}/${REPOISTORY}:${IMAGE_TAG}
docker push ${REGISTRY}/${REPOSITORY}:${IMAGE_TAG}
docker build -f docker/web/Dockerfile -t $REGISTRY/$REPOSITORY:$IMAGE_TAG .
docker tag $REPOSITORY:$IMAGE_TAG $REGISTRY/$REPOISTORY:$IMAGE_TAG
docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG

0 comments on commit c1aa2b2

Please sign in to comment.