chore: update deploy script & action

This commit is contained in:
MadCcc 2022-11-18 14:29:52 +08:00
parent ee3bd96f2d
commit f9b452017b
2 changed files with 3 additions and 4 deletions

View File

@ -10,7 +10,7 @@ permissions:
jobs: jobs:
setup: setup:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event.ref_type == 'tag' && (contains(github.event.ref, '-') == false || startsWith(github.event.ref, '5.0.0')) if: github.event.ref_type == 'tag' && (contains(github.event.ref, '-') == false)
steps: steps:
- name: checkout - name: checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
@ -66,6 +66,5 @@ jobs:
- name: deploy - name: deploy
uses: peaceiris/actions-gh-pages@v3 uses: peaceiris/actions-gh-pages@v3
with: with:
deploy_key: ${{ secrets.NEXT_SITE_DEPLOY }} deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
external_repository: ant-design/next.ant.design
publish_dir: ./_site publish_dir: ./_site

View File

@ -62,7 +62,7 @@
"compile": "npm run clean && antd-tools run compile-experimental", "compile": "npm run clean && antd-tools run compile-experimental",
"changelog": "node ./scripts/print-changelog", "changelog": "node ./scripts/print-changelog",
"predeploy": "antd-tools run clean && npm run site && cp CNAME _site && npm run site:test", "predeploy": "antd-tools run clean && npm run site && cp CNAME _site && npm run site:test",
"deploy": "gh-pages -d _site -r git@github.com:ant-design/next.ant.design.git -b gh-pages", "deploy": "gh-pages -d _site -b gh-pages",
"deploy:china-mirror": "git checkout gh-pages && git pull origin gh-pages && git push git@gitee.com:ant-design/ant-design.git gh-pages", "deploy:china-mirror": "git checkout gh-pages && git pull origin gh-pages && git push git@gitee.com:ant-design/ant-design.git gh-pages",
"dist": "antd-tools run dist", "dist": "antd-tools run dist",
"dist:esbuild": "ESBUILD=true npm run dist", "dist:esbuild": "ESBUILD=true npm run dist",