From 952e9271f5241a15cab7c150633e783d275202dc Mon Sep 17 00:00:00 2001 From: Michal Zielenkiewicz Date: Mon, 6 May 2024 13:12:37 +0200 Subject: [PATCH] Add extension build artifacts to build workflow --- .github/workflows/ci-build.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 1aa928cce7..476081b53b 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -38,12 +38,19 @@ jobs: id: vars run: | echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT" - - name: Build app + - name: Build web ROSE Wallet run: yarn build - - name: Upload build artifacts - # Upload build artifacts on push event. + - name: Build extension ROSE Wallet + run: yarn build:ext + - name: Upload web ROSE Wallet build artifacts if: github.event_name == 'push' uses: actions/upload-artifact@v4 with: name: rose-wallet-web-${{ steps.vars.outputs.SHORT_SHA }} path: build + - name: Upload extension ROSE Wallet build artifacts + if: github.event_name == 'push' + uses: actions/upload-artifact@v4 + with: + name: rose-wallet-ext-${{ steps.vars.outputs.SHORT_SHA }} + path: build-ext