We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59015d1 commit dbfed26Copy full SHA for dbfed26
.github/workflows/main.yml
@@ -26,7 +26,7 @@ jobs:
26
fetch-depth: 3
27
28
- name: Use latest version of Node.js
29
- uses: actions/setup-node@master
+ uses: actions/setup-node@v3
30
with:
31
node-version: "*"
32
@@ -60,7 +60,9 @@ jobs:
60
# path: test/cypress/screenshots
61
62
- name: Deploy to gh-pages
63
- if: github.ref == 'refs/heads/main'
+ if: |
64
+ github.ref == 'refs/heads/main' &&
65
+ contains(github.event.head_commit.message, 'chore(release)')
66
uses: peaceiris/actions-gh-pages@v3
67
68
github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments