.forgejo/workflows/build.yaml aktualisiert
This commit is contained in:
parent
461d06b5c7
commit
a8f377ec85
1 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ jobs:
|
||||||
HUGO_ENV: production
|
HUGO_ENV: production
|
||||||
run: hugo --minify
|
run: hugo --minify
|
||||||
- name: Zip output
|
- 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
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: hugo-output
|
name: hugo-output
|
||||||
|
@ -40,7 +40,7 @@ jobs:
|
||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: hugo-output
|
name: hugo-output
|
||||||
- run: unzip public.zip -d .
|
- run: apt update && apt install unzip -y && unzip public.zip -d .
|
||||||
- run: ls -l
|
- run: ls -l
|
||||||
- run: |
|
- run: |
|
||||||
git config user.name "forgejo-actions"
|
git config user.name "forgejo-actions"
|
||||||
|
|
Loading…
Reference in a new issue