Skip to content

Commit 2c0eef3

Browse files
committed
fix: typo breaking GHA
1 parent 0b08ae1 commit 2c0eef3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docs-build-update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
if: startsWith(github.ref, 'refs/tags/')
4848
run: |
4949
MAJOR_MINOR=${CURBRANCH%.*}
50-
if [[ "${MAJOR_MINOR" == "" ]]; then
50+
if [[ "${MAJOR_MINOR}" == "" ]]; then
5151
echo "Could not identify release series"
5252
exit 1
5353
fi
@@ -63,7 +63,7 @@ jobs:
6363
- name: Push "master" docs to gh-pages after a PR is merged
6464
if: github.event.pull_request.merged == true
6565
run: |
66-
if [[ "${CURBRANCH" != "master" ]]; then
66+
if [[ "${CURBRANCH}" != "master" ]]; then
6767
echo "$CURBRANCH is not the default development branch"
6868
exit 1
6969
fi

0 commit comments

Comments
 (0)