Skip to content

Commit 5f06fac

Browse files
committed
Fixes CI branch condition syntax in GitHub Actions
1 parent 59e4785 commit 5f06fac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
runs-on: ubuntu-latest
178178

179179
# Triggered on push to develop or master branch only
180-
if: env.CI_BRANCH == 'develop' || env.CI_BRANCH == 'master'
180+
if: ${{ env.CI_BRANCH == 'develop' || env.CI_BRANCH == 'master' }}
181181

182182
steps:
183183
# Deploy the static files created in the previous job to GitHub Pages

0 commit comments

Comments
 (0)