Skip to content

Commit 64b8d1a

Browse files
Upgrade Github workflows
1 parent 334e827 commit 64b8d1a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ jobs:
1111
deploy:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
15-
- uses: actions/setup-node@v2
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-node@v3
16+
with:
17+
node-version: '18'
1618

1719
- name: Install dependencies
1820
run: npm ci
@@ -21,9 +23,7 @@ jobs:
2123
run: npm run build
2224

2325
- name: Deploy the documentation
24-
uses: JamesIves/github-pages-deploy-action@releases/v2
25-
env:
26-
BASE_BRANCH: source
27-
BRANCH: master
28-
FOLDER: docs/.vuepress/dist
29-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
uses: JamesIves/github-pages-deploy-action@releases/v4
27+
with:
28+
branch: master
29+
folder: docs/.vuepress/dist

0 commit comments

Comments
 (0)