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 67bc905 commit 0e933c4Copy full SHA for 0e933c4
.github/workflows/publishwebsite.yml
@@ -1,4 +1,4 @@
1
-name: Publish Website
+name: Deploy to GitHub Pages
2
3
on:
4
push:
@@ -16,7 +16,7 @@ jobs:
16
uses: actions/setup-node@v4
17
with:
18
node-version: 18
19
- cache: 'npm'
+ cache: "npm"
20
21
- name: Install dependencies
22
run: npm ci
@@ -32,3 +32,4 @@ jobs:
32
33
github_token: ${{ secrets.GITHUB_TOKEN }}
34
publish_dir: ./dist
35
+ publish_branch: gh-pages
.gitignore
@@ -1,3 +1,4 @@
node_modules/
dist/
-.parcel-cache/
+.parcel-cache/
+.DS_STORE
package.json
@@ -4,7 +4,7 @@
"description": "",
5
"scripts": {
6
"dev": "parcel index.html",
7
- "build": "parcel build index.html"
+ "build": "parcel build index.html --public-url ./"
8
},
9
"keywords": [],
10
"author": "",
0 commit comments