"git@developer.sourcefind.cn:OpenDAS/vision.git" did not exist on "abeecb3548d0e13136026a282ba24d608dd8bf55"
Unverified Commit 83493894 authored by Matti Picus's avatar Matti Picus Committed by GitHub
Browse files

fix formatting CIRCLECI_TAG when building docs (#4693)

parent 8b588042
...@@ -941,7 +941,8 @@ jobs: ...@@ -941,7 +941,8 @@ jobs:
name: Build docs name: Build docs
command: | command: |
set -ex set -ex
tag=${CIRCLE_TAG:1:5} # turn v1.12.0rc3 into 1.12.0
tag=$(echo $CIRCLE_TAG | sed -e 's/v*\([0-9.]*\).*/\1/')
VERSION=${tag:-main} VERSION=${tag:-main}
eval "$(./conda/bin/conda shell.bash hook)" eval "$(./conda/bin/conda shell.bash hook)"
conda activate ./env conda activate ./env
......
...@@ -941,7 +941,8 @@ jobs: ...@@ -941,7 +941,8 @@ jobs:
name: Build docs name: Build docs
command: | command: |
set -ex set -ex
tag=${CIRCLE_TAG:1:5} # turn v1.12.0rc3 into 1.12.0
tag=$(echo $CIRCLE_TAG | sed -e 's/v*\([0-9.]*\).*/\1/')
VERSION=${tag:-main} VERSION=${tag:-main}
eval "$(./conda/bin/conda shell.bash hook)" eval "$(./conda/bin/conda shell.bash hook)"
conda activate ./env conda activate ./env
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment