Files
spending-dashboards/.gitea/workflows/pages.yml
Anthony Martin 00c721872b
Some checks failed
Pages / deploy (push) Failing after 1m42s
Add Gitea Pages deployment workflow
2026-03-14 13:13:45 +00:00

19 lines
322 B
YAML

name: Pages
on:
push:
branches: [main, gh-pages]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
steps:
- uses: actions/checkout@v4
- uses: actions/upload-pages-artifact@v3
with:
path: '.'
- uses: actions/deploy-pages@v4