website/.forgejo/workflows/build.yaml
hoernschen e0299257dc
Some checks failed
build-to-pages / build (push) Failing after 10s
build-to-pages / push (push) Failing after 1s
.forgejo/workflows/build.yaml aktualisiert
2023-10-20 20:53:21 +00:00

19 lines
No EOL
392 B
YAML

name: build-to-pages
on: [push]
branches: [main]
jobs:
build:
runs-on: docker
image: klakegg/hugo
steps:
- uses: actions/checkout@v3
- run: hugo --minify
push:
runs-on: docker
steps:
- run: |
git config user.name "forgejo-actions"
git config user.email ""
git add .
git commit -m "generated"
git push