Update with robots/ai, add gitea workflow
Some checks failed
Deploy / deploy (push) Failing after 17s

This commit is contained in:
Madison Rye Progress
2026-03-15 11:57:08 -07:00
parent c21608bc46
commit 764944bb32
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,18 @@
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 }}