File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: buildAndDeployLibrary
5
5
on :
6
6
push :
7
7
branches :
8
- - main
8
+ - master
9
9
10
10
# jobs 也就是任务的意思
11
11
jobs :
@@ -29,15 +29,15 @@ jobs:
29
29
- name : Build
30
30
run : npm run build # 打包
31
31
32
- - name : Docs
33
- run : npm run docs-build # 打包文档
32
+ # - name: Docs
33
+ # run: npm run docs-build # 打包文档
34
34
35
- - name : Deploy
36
- uses : peaceiris/actions-gh-pages@v3 # 使用部署到 GitHub pages 的 action
37
- with :
38
- publish_dir : ./docs/.vuepress/dist # 部署打包后的 dist 目录
39
- github_token : ${{ secrets.NFTSCAN_DEPLOY }} # secret 名
40
- commit_message : release # 部署时的 git 提交信息,根据自身需要填写即可
35
+ # - name: Deploy
36
+ # uses: peaceiris/actions-gh-pages@v3 # 使用部署到 GitHub pages 的 action
37
+ # with:
38
+ # publish_dir: ./docs/.vuepress/dist # 部署打包后的 dist 目录
39
+ # github_token: ${{ secrets.NFTSCAN_DEPLOY }} # secret 名
40
+ # commit_message: release # 部署时的 git 提交信息,根据自身需要填写即可
41
41
42
42
- name : Publish to NPM # 推送到 NPM 上
43
43
run : |
You can’t perform that action at this time.
0 commit comments