diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bb33782d..2d817a42 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,6 +31,15 @@ jobs: - name: Install dependencies run: pnpm install + - name: Build app + run: pnpm run build + + - name: Upload build artifact + uses: actions/upload-artifact@v4 + with: + name: build + path: dist + - name: Run Semantic Release env: GITHUB_TOKEN: ${{ secrets.GH_PAT }}