blog/.gitea/workflows/build-page.yaml

27 lines
610 B
YAML
Raw Normal View History

2024-03-14 09:09:45 +00:00
name: github pages
on:
push:
branches:
2024-12-08 05:31:51 +00:00
- master # Set a branch name to trigger deployment
2024-03-14 09:09:45 +00:00
jobs:
deploy:
runs-on: ubuntu-latest
steps:
2025-02-24 15:57:31 +00:00
- uses: actions/checkout@v4
2024-12-08 05:31:51 +00:00
with:
submodules: true # Fetch Hugo themes (true OR recursive)
2025-02-24 15:57:31 +00:00
fetch-depth: 1
2024-03-14 09:09:45 +00:00
2024-12-08 05:31:51 +00:00
- name: Setup Hugo
2025-02-24 15:57:31 +00:00
uses: peaceiris/actions-hugo@v3
2024-12-08 05:31:51 +00:00
with:
2025-02-24 15:57:31 +00:00
hugo-version: "0.144.2"
extended: true
2024-03-14 09:09:45 +00:00
2024-12-08 05:31:51 +00:00
- name: Build
run: hugo --minify
- run: npm ci
- run: CLOUDFLARE_API_TOKEN=${{ secrets.CLOUDFLARE_API_TOKEN }} npx wrangler pages publish public --project-name blog-usbharu