We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5288d80 commit c2085c5Copy full SHA for c2085c5
.github/workflows/pages-deploy.yml
@@ -2,7 +2,7 @@
2
name: Deploy to GitHub Pages
3
on:
4
push:
5
- branches: ['main']
+ branches: ["main"]
6
7
# Allows you to run this workflow manually from the Actions tab
8
workflow_dispatch:
@@ -15,7 +15,7 @@ permissions:
15
16
# Allow one concurrent deployment
17
concurrency:
18
- group: 'pages'
+ group: "pages"
19
cancel-in-progress: true
20
21
jobs:
@@ -32,7 +32,7 @@ jobs:
32
uses: actions/setup-node@v4
33
with:
34
node-version: 22
35
- cache: 'npm'
+ cache: "npm"
36
- name: Install dependencies
37
run: npm ci
38
- name: Build
@@ -43,7 +43,7 @@ jobs:
43
uses: actions/upload-pages-artifact@v3
44
45
# Upload dist folder
46
- path: './dist'
+ path: "./dist"
47
- name: Deploy to GitHub Pages
48
id: deployment
49
uses: actions/deploy-pages@v4
0 commit comments