Files
post-self.ink/.gitea/workflows/deploy.yaml
Madison Rye Progress 785249c2dc
Some checks failed
Deploy / deploy (push) Failing after 14s
Switch to actions-hugo
2026-03-15 12:38:06 -07:00

26 lines
516 B
YAML

name: Deploy
run-name: ${{ gitea.actor }} is deploying ${{ gitea.repository }}
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v6
with:
submodules: 'true'
- name: Install Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.157.0'
extended: true
- name: Build site
run: hugo build --gc --minify --baseURL ${{ vars.BASE_URL }}