Skip to content

Commit

Permalink
Explicitly check value of deploy vars in GHA to ensure correct logic (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
CAM-Gerlach authored Aug 9, 2024
1 parent e8f00a4 commit 6951e02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ jobs:
- name: Build site
shell: bash
run: ./ci/build.sh
- name: Build site
- name: Postprocess site
shell: bash
run: make multidocs
- name: Deploy to GitHub Pages
if: env.IS_DEPLOY
if: env.IS_DEPLOY == '1'
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: ./doc/_build/html
clean: false # Don't remove files from other branches
dry-run: ${{ (env.IS_STAGING && 'true') || 'false' }}
dry-run: ${{ (env.IS_STAGING == '1' && 'true') || 'false' }}

0 comments on commit 6951e02

Please sign in to comment.