Skip to content

Commit

Permalink
update workflow syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
EinfachMarwin authored Apr 3, 2024
1 parent 7c09bcc commit 8a83a7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ jobs:
BUILD_NUMBER: ${{ github.run_number }}
- name: Setup Pages
uses: actions/configure-pages@v3
if: github.ref == refs/heads/master
if: github.ref == 'refs/heads/master'
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# Upload entire repository
path: 'dist'
if: github.ref == refs/heads/master
if: github.ref == 'refs/heads/master'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
if: github.ref == refs/heads/master
if: github.ref == 'refs/heads/master'

0 comments on commit 8a83a7a

Please sign in to comment.