Files
post-self.ink/.gitea/workflows/deploy.yaml
Madison Rye Progress 764944bb32
Some checks failed
Deploy / deploy (push) Failing after 17s
Update with robots/ai, add gitea workflow
2026-03-15 12:00:16 -07:00

19 lines
412 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: Build site
run: hugo build --gc --minify --baseURL ${{ vars.BASE_URL }} --destination ${{ vars.DESTINATION }}