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 0b08ae1 commit 2c0eef3Copy full SHA for 2c0eef3
.github/workflows/docs-build-update.yml
@@ -47,7 +47,7 @@ jobs:
47
if: startsWith(github.ref, 'refs/tags/')
48
run: |
49
MAJOR_MINOR=${CURBRANCH%.*}
50
- if [[ "${MAJOR_MINOR" == "" ]]; then
+ if [[ "${MAJOR_MINOR}" == "" ]]; then
51
echo "Could not identify release series"
52
exit 1
53
fi
@@ -63,7 +63,7 @@ jobs:
63
- name: Push "master" docs to gh-pages after a PR is merged
64
if: github.event.pull_request.merged == true
65
66
- if [[ "${CURBRANCH" != "master" ]]; then
+ if [[ "${CURBRANCH}" != "master" ]]; then
67
echo "$CURBRANCH is not the default development branch"
68
69
0 commit comments