feat: update 2.0.16 #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: auto trigger quark-doc-home update | |
# # on: | |
# # push: | |
# # branches: | |
# # - main # default branch | |
# # paths: | |
# # - ".github/workflows/**" | |
# # - "**" | |
# on: | |
# repository_dispatch: | |
# types: [trigger-action] | |
# jobs: | |
# copy: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 # 检出仓库 | |
# - uses: actions/setup-node@v3 # 设置node版本 | |
# with: | |
# node-version: 16 | |
# - run: npm install | |
# - run: npm run build | |
# # 纯粹就是为了修改一些文件推送到另一个仓库,然后触发另一个仓库的 action | |
# - name: Sync | |
# uses: JamesIves/github-pages-deploy-action@v4 | |
# with: | |
# branch: main # action 应该部署到的分支。 | |
# folder: dist # 操作应该部署的文件夹。 | |
# clean: true | |
# repository-name: hellof2e/quark-doc-home | |
# token: ${{ secrets.GIT_ACTION }} | |
# target-folder: auto-trigger/ | |
# # 部署到当前仓库的 gh-pages 分支 | |
# # - name: Deploy | |
# # uses: peaceiris/actions-gh-pages@v3 # 使用部署到 GitHub pages 的 action | |
# # with: | |
# # publish_dir: ./dist # 部署打包后的 dist 目录 | |
# # github_token: ${{ secrets.GITHUB_TOKEN }} # secret 名 | |
# # # user_name: ${{ secrets.MY_USER_NAME }} | |
# # # user_email: ${{ secrets.MY_USER_EMAIL }} | |
# # # commit_message: 自动部署 # 部署时的 git 提交信息,自由填写 |