Files
post-self.ink/.gitea/workflows/deploy.yaml
Madison Rye Progress fb684232be
Some checks failed
Deploy / deploy (push) Failing after 16s
Use hugo image
2026-03-15 12:18:01 -07:00

19 lines
403 B
YAML

name: Deploy
run-name: ${{ gitea.actor }} is deploying ${{ gitea.repository }}
on:
push:
branches:
- main
jobs:
deploy:
runs-on: hugo
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 }}