From 9bdafbf24df29018c7bd941f64babe069e6326ec Mon Sep 17 00:00:00 2001 From: Timothy Schenk Date: Wed, 15 Nov 2023 13:59:20 +0100 Subject: [PATCH] ci: no way to set output name. --- .gitea/workflows/server.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/server.yaml b/.gitea/workflows/server.yaml index 8c163ef..75db3c7 100644 --- a/.gitea/workflows/server.yaml +++ b/.gitea/workflows/server.yaml @@ -6,7 +6,7 @@ env: # Name of module and id separated by a slash INSTANCE: Continuity/wiki # Replace HI with the ID of the instance in capital letters - ARTIFACT: wiki.zip + ARTIFACT: webHelpWIKI2-all.zip # Writerside docker image version DOCKER_VERSION: 232.10165.1 ALGOLIA_ARTIFACT: algolia-indexes-wiki.zip @@ -48,12 +48,15 @@ jobs: instance: ${{ env.INSTANCE }} artifact: ${{ env.ARTIFACT }} docker-version: ${{ env.DOCKER_VERSION }} + - name: rename artifact + run: | + mv artifacts/${{ env.ARTIFACT }} artifacts/wiki.zip - name: Upload documentation uses: actions/upload-artifact@v3 with: name: docs path: | - artifacts/${{ env.ARTIFACT }} + artifacts/wiki.zip artifacts/report.json retention-days: 14 - name: Upload algolia-indexes