We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b77955 commit dedb9c4Copy full SHA for dedb9c4
.github/workflows/build.yml
@@ -6,7 +6,7 @@ on:
6
branches:
7
- main
8
schedule:
9
- - cron: '0 */3 * * *'
+ - cron: "0 */3 * * *"
10
11
jobs:
12
build:
@@ -22,7 +22,7 @@ jobs:
22
- name: Use Node.js ${{ matrix.node-version }}
23
uses: actions/setup-node@v4
24
with:
25
- node-version: '${{ matrix.node-version }}'
+ node-version: "${{ matrix.node-version }}"
26
27
- name: Build
28
run: |
@@ -35,8 +35,7 @@ jobs:
35
run: cp CNAME dist
36
37
- name: Deploy to GitHub Pages
38
- uses: peaceiris/actions-gh-pages@v4
+ uses: enriikke/gatsby-gh-pages-action@v2
39
40
- github_token: ${{ secrets.ACCESS_TOKEN }}
41
- publish_dir: public
+ access-token: ${{ secrets.ACCESS_TOKEN }}
42
if: github.event_name != 'pull_request'
0 commit comments