获取更多样式”打不开怎么办 #19
Workflow file for this run
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' | |
needs: | |
- lint | |
- build | |
uses: ./.github/workflows/deploy-gh-pages.yml |