From 1d68aec31e7509a7b0b1d25294a9f006b96a71f8 Mon Sep 17 00:00:00 2001 From: ze0s <43699394+zze0s@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:36:00 +0200 Subject: [PATCH] build: upload web-dist to release assets on tag (#1731) --- .github/workflows/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f3e7ce1..de4afe7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -140,6 +140,13 @@ jobs: if: startsWith(github.ref, 'refs/tags/') run: mkdir -p dist && tar czf dist/web-dist.tar.gz --directory=web/dist ./ + - name: Upload web-dist to release assets + uses: softprops/action-gh-release@v2 + if: startsWith(github.ref, 'refs/tags/') + with: + files: | + dist/web-dist.tar.gz + - name: Upload assets uses: actions/upload-artifact@v4 with: