Add Forgejo Actions workflows for Hugo site
- Add build workflow for PR validation - Add deploy workflow for main branch S3 deployment - Use self-hosted runners 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
0265c44006
commit
9dbd1af5f9
2 changed files with 70 additions and 0 deletions
33
.forgejo/workflows/build.yml
Normal file
33
.forgejo/workflows/build.yml
Normal file
|
@ -0,0 +1,33 @@
|
|||
name: Build Site
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: self-hosted
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Hugo
|
||||
uses: peaceiris/actions-hugo@v3
|
||||
with:
|
||||
hugo-version: 'latest'
|
||||
extended: true
|
||||
|
||||
- name: Build Hugo site
|
||||
run: hugo --minify
|
||||
|
||||
- name: Upload build artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: hugo-build
|
||||
path: public/
|
||||
retention-days: 7
|
Loading…
Add table
Add a link
Reference in a new issue