Skip to content

Commit

Permalink
fix documentation action syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanJamesLew committed Mar 11, 2023
1 parent 1207dba commit 521cd56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Sphinx Build
on: [push, pull_request, workflow_dispatch]
jobs:
docs:
if: {{ github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags') }}
if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 521cd56

Please sign in to comment.