移动几个公众号文章到专题报道分区 #968
This file contains hidden or 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: Publish Site | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - .github | |
| - README.md | |
| - LICENSE | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-22.04 | |
| if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')" | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-node@v3 | |
| - uses: peaceiris/actions-hugo@v2 | |
| with: | |
| hugo-version: latest | |
| extended: true | |
| - run: npm ci | |
| - run: hugo --minify | |
| - run: npx wrangler pages deploy public --project-name mtfwiki-blog --branch main | |
| if: github.ref == 'refs/heads/main' | |
| env: | |
| CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }} | |
| CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }} |