website/.forgejo/workflows/build.yaml
hoernschen 925e37dded
Some checks failed
build-to-pages / build (push) Failing after 9s
build-to-pages / push (push) Has been cancelled
.forgejo/workflows/build.yaml aktualisiert
2023-10-21 18:54:48 +00:00

34 lines
No EOL
778 B
YAML

name: build-to-pages
on: [push]
branches: [main]
jobs:
build:
runs-on: docker
container:
image: klakegg/hugo
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- run: hugo --minify
- uses: actions/upload-artifact@v3
with:
name: hugo-output
path: ./public
if-no-files-found: error
push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: pages
- uses: actions/download-artifact@v3
with:
name: hugo-output
- run: ls -l
- run: |
git config user.name "forgejo-actions"
git config user.email ""
git add .
git commit -m "generated"
git push