Skip to content

Commit 8f52732

Browse files
committed
chore: test
1 parent 6d655b9 commit 8f52732

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy
1+
name: deploy
22

33
on:
44
workflow_dispatch:
@@ -15,11 +15,14 @@ jobs:
1515
uses: actions/setup-node@v3
1616
with:
1717
node-version: 18
18-
- uses: actions/checkout@v2
19-
- run: npm install
20-
- run: npm build
21-
- run: npm run site:build
22-
- run: cp ./site/CNAME ./packages/site/.vitepress/dist/CNAME
18+
- name: Checkout repository
19+
uses: actions/checkout@v2
20+
- name: Install dependencies
21+
run: npm install
22+
- name: Build site
23+
run: npm run site:build
24+
- name: Copy CNAME
25+
run: cp ./site/CNAME ./packages/site/.vitepress/dist/CNAME
2326
- name: Deploy
2427
uses: peaceiris/actions-gh-pages@v4
2528
# If you're changing the branch from main,

0 commit comments

Comments
 (0)