We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4db3e36 commit 2b56858Copy full SHA for 2b56858
1 file changed
.github/workflows/cd.yml
@@ -12,22 +12,18 @@ jobs:
12
runs-on: ubuntu-latest
13
steps:
14
- name: Git checkout
15
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
16
- name: Install Node
17
- uses: actions/setup-node@v1
18
- with:
19
- node-version: 14
+ uses: actions/setup-node@v3
20
- name: Install PNPM
21
run: npm install -g pnpm
22
- name: Install dependencies
23
run: pnpm install --frozen-lockfile=false
24
- name: Build and deploy
25
run: pnpm run deploy
26
- - uses: JamesIves/github-pages-deploy-action@4.1.8
+ - uses: JamesIves/github-pages-deploy-action@v4
27
with:
28
branch: gh-pages
29
folder: public
30
target-folder: public
31
single-commit: true
32
- silent: true
33
- clean: true
0 commit comments