.forgejo/workflows/build.yaml aktualisiert
Some checks failed
build-to-pages / build (push) Failing after 3m9s
build-to-pages / push (push) Failing after 3s

This commit is contained in:
hoernschen 2023-10-23 14:33:38 +00:00
parent 461d06b5c7
commit a8f377ec85

View file

@ -24,7 +24,7 @@ jobs:
HUGO_ENV: production
run: hugo --minify
- name: Zip output
run: zip -r public.zip public/
run: apt update && apt install zip -y && zip -r public.zip public/
- uses: actions/upload-artifact@v3
with:
name: hugo-output
@ -40,7 +40,7 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: hugo-output
- run: unzip public.zip -d .
- run: apt update && apt install unzip -y && unzip public.zip -d .
- run: ls -l
- run: |
git config user.name "forgejo-actions"