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 b73950b commit 68fac39Copy full SHA for 68fac39
.github/workflows/deploy.yml
@@ -10,13 +10,17 @@ jobs:
10
name: github-pages
11
url: ${{ steps.deployment.outputs.page_url }}
12
steps:
13
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
14
with:
15
fetch-depth: 0
16
+ - uses: actions/setup-node@v5
17
+ with:
18
+ node-version-file: .nvmrc
19
+ cache: npm
20
- run: npm ci && npm run build
21
env:
22
GOOGLE_ANALYTICS_TRACKING_ID: ${{ vars.GOOGLE_ANALYTICS_TRACKING_ID }}
- - uses: actions/upload-pages-artifact@v3
23
+ - uses: actions/upload-pages-artifact@v4
24
25
path: build
26
- id: deployment
0 commit comments