ci を構成

This commit is contained in:
usbharu 2024-03-14 18:09:45 +09:00
parent dc6ac17f30
commit fcb5412e04
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
name: github pages
on:
push:
branches:
- main # Set a branch name to trigger deployment
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "0.123.8"
- name: Build
run: hugo --minify
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: 76906b4e38909e314e89939ec9f8e485
projectName: blog-usbharu
directory: public
# Optional: Enable this if you want to have GitHub Deployments triggered
gitHubToken: ${{ secrets.GITHUB_TOKEN }}