testing pipeline
Some checks failed
Deploy Hugo to Gitea Pages / build-and-deploy (push) Failing after 28s
Blowfish Docs Deploy / build (push) Failing after 24s
Blowfish Docs Deploy / deploy (push) Has been skipped

This commit is contained in:
2026-03-10 05:57:07 +00:00
parent c9e273371c
commit 0b155c2e0b
3 changed files with 30 additions and 16 deletions

View File

@@ -0,0 +1,30 @@
name: Deploy Hugo to Gitea Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Build Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: 'latest'
- name: Run Build
run: hugo --minify
- name: Upload to Gitea Pages
uses: actions/upload-pages-artifact@v3
with:
path: 'public/'
- name: Deploy
uses: actions/deploy-pages@v4

View File

@@ -0,0 +1,75 @@
# Sample workflow for building and deploying a Hugo site to GitHub Pages
name: Blowfish Docs Deploy
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
# Default to bash
defaults:
run:
shell: bash
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Hugo setup
uses: peaceiris/actions-hugo@v2.6.0
with:
hugo-version: 0.142.0
extended: true
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Pages
id: pages
uses: actions/configure-pages@v2
- name: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: |
hugo -d ./public --baseURL https://nunocoracao.github.io/blowfish_template/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./public
# Deployment job
deploy:
environment:
name: github-pages
url: https://nunocoracao.github.io/blowfish_template/
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4