We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5290aa commit 420f282Copy full SHA for 420f282
1 file changed
.github/workflows/deploy-docs.yml
@@ -14,7 +14,7 @@ permissions:
14
id-token: write
15
16
concurrency:
17
- group: 'pages'
+ group: pages
18
cancel-in-progress: true
19
20
jobs:
@@ -28,7 +28,7 @@ jobs:
28
uses: actions/setup-node@v4
29
with:
30
node-version: 20
31
- cache: 'npm'
+ cache: npm
32
cache-dependency-path: docs/package-lock.json
33
34
- name: Install dependencies
@@ -45,12 +45,12 @@ jobs:
45
path: docs/dist
46
47
deploy:
48
+ needs: build
49
+ runs-on: ubuntu-latest
50
environment:
51
name: github-pages
52
url: ${{ steps.deployment.outputs.page_url }}
- runs-on: ubuntu-latest
- needs: build
53
steps:
54
- name: Deploy to GitHub Pages
55
id: deployment
56
- uses: actions/deploy-pages@v4
+ uses: actions/deploy-pages@v4
0 commit comments