From a8f377ec855458cf33cfd46f5ffad68055423699 Mon Sep 17 00:00:00 2001 From: hoernschen Date: Mon, 23 Oct 2023 14:33:38 +0000 Subject: [PATCH] .forgejo/workflows/build.yaml aktualisiert --- .forgejo/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index a1c2ec0..065b3cb 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -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"