删去冗余的【`】(仅代码、文件名使用等宽字体,专有名词使用正文字体);引文->引注;参考文献列表,书目->参考文献表;locale fil… #163
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: Main Action | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
lint: | |
uses: ./.github/workflows/lint.yml | |
build: | |
uses: ./.github/workflows/build.yml | |
deploy-gh-pages: | |
if: github.ref_name == 'main' && github.event_name == 'push' && github.repository == 'zotero-chinese/wiki' | |
needs: | |
- lint | |
- build | |
uses: ./.github/workflows/deploy-gh-pages.yml | |
secrets: | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} |