Skip to content

Commit

Permalink
Fixed tag deployment in CircleCI.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Mar 4, 2024
1 parent 4f8351f commit be0ee49
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ jobs:

- run:
name: Deploy
command: DEPLOY_BRANCH=${DEPLOY_BRANCH:-${CIRCLE_BRANCH}} .devtools/deploy.sh
command: |
REF="${CIRCLE_TAG:-${CIRCLE_BRANCH}}"
DEPLOY_BRANCH=${DEPLOY_BRANCH:-${REF}} .devtools/deploy.sh
workflows:
version: 2
Expand Down

0 comments on commit be0ee49

Please sign in to comment.