Skip to content

Commit

Permalink
ci(dockerhub): fix missing codename for stable releases
Browse files Browse the repository at this point in the history
  • Loading branch information
stefreak authored and vvagaytsev committed May 19, 2023
1 parent 971b526 commit 8c245f7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -406,11 +406,12 @@ jobs:
- deploy:
name: Release docker images
command: |
# 0.12 is hardcoded
export CODENAME=acorn
export MAJOR_VERSION=0
export MINOR_VERSION=12
if [[ "${CIRCLE_TAG}" = "" ]]; then
# 0.12 edge release
export MAJOR_VERSION=0
export MINOR_VERSION=12
export CODENAME=acorn
export PRERELEASE=edge
else
if ! [[ ${CIRCLE_TAG} =~ ^0.12 ]]; then
Expand Down

0 comments on commit 8c245f7

Please sign in to comment.