Skip to content

Commit

Permalink
Merge pull request #5984 from ryanlovett/docs-ci-brackets
Browse files Browse the repository at this point in the history
Add missing braces around action conditional.
  • Loading branch information
ryanlovett authored Aug 20, 2024
2 parents 264de30 + 7f0c338 commit c49afc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/quarto-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
contents: write
# Don't run in forks, unless the forker sets a secret variable. I chose to
# use a secret rather than a var because secrets are not copied to forks.
if: github.event.repository.fork == false || secrets.ALLOW_FORK_DEPLOY == 'true'
if: ${{ github.event.repository.fork == false || secrets.ALLOW_FORK_DEPLOY == 'true' }}
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down

0 comments on commit c49afc0

Please sign in to comment.