Skip to content

Commit faec291

Browse files
committed
update cname hopefully
1 parent 06e5a9c commit faec291

File tree

7 files changed

+19
-172
lines changed

7 files changed

+19
-172
lines changed

.github/workflows/static.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,23 @@ jobs:
3131
steps:
3232
- name: Checkout
3333
uses: actions/checkout@v4
34+
- name: Set up Node
35+
uses: actions/setup-node@v4
36+
with:
37+
node-version: lts/*
38+
cache: "npm"
39+
- name: Install dependencies
40+
run: npm ci
41+
- name: Build
42+
run: npm run build
43+
- name: Add CNAME to dist/
44+
run: echo "musicmonday.kenjiang.ca" > dist/CNAME
3445
- name: Setup Pages
3546
uses: actions/configure-pages@v5
3647
- name: Upload artifact
3748
uses: actions/upload-pages-artifact@v3
3849
with:
39-
path: './dist'
50+
path: "./dist"
4051
- name: Deploy to GitHub Pages
4152
id: deployment
4253
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ pnpm-debug.log*
88
lerna-debug.log*
99

1010
node_modules
11+
dist
1112
dist-ssr
1213
*.local
1314

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
musicmonday.kenjiang.ca

dist/assets/index-CfaWRLzG.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)