Skip to content

Commit

Permalink
Fix condition to deploy pages
Browse files Browse the repository at this point in the history
  • Loading branch information
sbliven committed Oct 9, 2023
1 parent 19b0c2a commit 9094f0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main' && $${{ !env.ACT }}
if: $${{ github.ref == 'refs/heads/main' && !env.ACT }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist

0 comments on commit 9094f0f

Please sign in to comment.