From a9ac847428939fa9e8dd22fc7f1af97f5186698f Mon Sep 17 00:00:00 2001 From: AlexSurtees <56356652+AlexSurtees@users.noreply.github.com> Date: Thu, 12 Feb 2026 13:37:51 +0000 Subject: [PATCH] Add build and upload steps to release workflow --- .github/workflows/release.yml | 9 +++++++++ 1 file changed, 9 insertions(+) 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 }}