We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bda6f6a commit 3a9ad33Copy full SHA for 3a9ad33
.circleci/config.yml
@@ -200,7 +200,15 @@ jobs:
200
command: |
201
git config --local user.name "${GITHUB_USER}"
202
git checkout gh-pages
203
- git tag -a "docs_v$release_version" -m "Add documentation tags to version $release_version"
+
204
+ if [ "$release_type" == "release" ]
205
+ then
206
+ git tag -a "docs_v$release_version" -m "Add documentation tags to version $release_version"
207
+ else
208
+ git tag -a "beta_docs_v$release_version" -m "Add documentation tags to version $release_version"
209
+ fi
210
211
212
git push --tags -q https://${GITHUB_TOKEN}@github.com/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}.git
213
214
release_maven:
0 commit comments