From e7f25cbe3b09b133b599aecc2b96058455116a37 Mon Sep 17 00:00:00 2001 From: Fabricio Silva Date: Tue, 17 Sep 2024 14:13:15 +0100 Subject: [PATCH] build: add web/dist tarball (#1721) * feat(release): add web-dist.tar.gz to releases * feat(release): pass the directory to tar command instead --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0d49e49..a091107 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -136,6 +136,9 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Create web-dist artifact + run: tar czf dist/web-dist.tar.gz --directory=web/dist ./ + - name: Upload assets uses: actions/upload-artifact@v4 with: