标点符号修改 #62
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: 部署到 Cloudflare | |
on: | |
push: | |
branches: | |
- 'master' | |
paths: | |
- '.github/workflows/deploy.yaml' | |
- 'content/**' | |
- 'config/**' | |
- 'static/**' | |
- 'themes/**' | |
- 'package.json' | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 检出代码 | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: DeterminateSystems/nix-installer-action@main | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'npm' | |
- name: Install npm dependencies | |
run: npm install | |
- name: Build site | |
run: nix run github:nixos/nixpkgs/nixos-24.11#hugo -- --minify --enableGitInfo | |
- name: Deploy to Cloudflare Pages | |
id: deploy | |
uses: cloudflare/wrangler-action@v3 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_PAGES_TOKEN }} | |
accountId: ${{ secrets.CLOUDFLARE_PAGES_ACCOUNT }} | |
command: pages deploy public --project-name=mtfwiki | |