There was an error while loading. Please reload this page.
1 parent 6d655b9 commit 8f52732Copy full SHA for 8f52732
1 file changed
.github/workflows/deploy.yml
@@ -1,4 +1,4 @@
1
-name: Deploy
+name: deploy
2
3
on:
4
workflow_dispatch:
@@ -15,11 +15,14 @@ jobs:
15
uses: actions/setup-node@v3
16
with:
17
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
+ - name: Checkout repository
+ uses: actions/checkout@v2
+ - name: Install dependencies
+ run: npm install
+ - name: Build site
23
+ run: npm run site:build
24
+ - name: Copy CNAME
25
+ run: cp ./site/CNAME ./packages/site/.vitepress/dist/CNAME
26
- name: Deploy
27
uses: peaceiris/actions-gh-pages@v4
28
# If you're changing the branch from main,
0 commit comments