Skip to content

Commit

Permalink
Tweak build job to not use the commit hash on a tagged commit
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanHerman committed Jan 19, 2022
1 parent e026616 commit 64d5735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -487,7 +487,7 @@ jobs:
name: Zip the Go Theme
command: |
mkdir -p /tmp/artifacts
if [ "$CIRCLE_BRANCH" == 'master' ]; then
if [ "$CIRCLE_BRANCH" == 'master' ] || [ ! -z "$CIRCLE_TAG" ]; then
zip -r /tmp/artifacts/go.zip ./go
else
GO_VERSION_LINE=$(awk '/\* Version:/' ./go/style.css)
Expand Down

0 comments on commit 64d5735

Please sign in to comment.