Skip to content

Commit

Permalink
chore: fix buildspec that read env vars incorrectly (#229)
Browse files Browse the repository at this point in the history
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
  • Loading branch information
Lou1415926 authored Feb 24, 2023
1 parent 040f304 commit a296fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ phases:
- make build-image
- make publish-dockerhub
- |
if [ ARCH_SUFFIX = "amd64" ]; then
if [ $ARCH_SUFFIX = "amd64" ]; then
make tag-latest
make publish-dockerhub-latest
fi
Expand Down

0 comments on commit a296fbe

Please sign in to comment.