testing pipeline
This commit is contained in:
30
.gitea/workflows/deploy.yml
Normal file
30
.gitea/workflows/deploy.yml
Normal 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
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
variables:
|
|
||||||
HUGO_ENV: production
|
|
||||||
# Blowfish theme relies heavily on these submodules
|
|
||||||
GIT_SUBMODULE_STRATEGY: recursive
|
|
||||||
|
|
||||||
pages:
|
|
||||||
# Using the image that actually supports the 'try' function
|
|
||||||
image: hugomods/hugo:exts
|
|
||||||
script:
|
|
||||||
- hugo version
|
|
||||||
- hugo --gc --minify
|
|
||||||
# artifacts:
|
|
||||||
# paths:
|
|
||||||
# - public
|
|
||||||
rules:
|
|
||||||
- if: $CI_COMMIT_BRANCH == $CI_COMMIT_REF_NAME
|
|
||||||
Reference in New Issue
Block a user