From db31a4c961b0ba03e33f9d8f726ba4d2892977c3 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 20 Dec 2024 16:46:04 +0100 Subject: [PATCH] Add webui static files in release tarball --- .github/workflows/release.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index fcbce000e..f65420ce8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -92,6 +92,16 @@ jobs: with: fetch-depth: 0 + - name: Artifact webui + uses: actions/download-artifact@v4 + with: + name: webui.tar.gz + + - name: Untar webui + run: | + tar xvf webui.tar.gz + rm webui.tar.gz + - name: Retrieve the secret and decode it to a file env: TRAEFIKER_RSA: ${{ secrets.TRAEFIKER_RSA }}