Skip to content

Commit

Permalink
ci: fix docker build step
Browse files Browse the repository at this point in the history
  • Loading branch information
joaotomaspinheiro committed Mar 16, 2024
1 parent 5020d29 commit 76212f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
export BUILD_GIT_HASH=$(git describe --always --dirty)
export BUILD_TIMESTAMP=$(TZ="GMT" LC_TIME="en_US.utf8" date)
echo $CONTAINER_TAG >> $GITHUB_OUTPUT
docker build -t $CONTAINER_TAG --build-arg BUILD_GIT_HASH="$BUILD_GIT_HASH" --build-arg BUILD_TIMESTAMP="$BUILD_TIMESTAMP" .
docker build -t $CONTAINER_TAG -f server.Dockerfile --build-arg BUILD_GIT_HASH="$BUILD_GIT_HASH" --build-arg BUILD_TIMESTAMP="$BUILD_TIMESTAMP" .
deploy:
needs: build
Expand Down

0 comments on commit 76212f8

Please sign in to comment.