Skip to content

Commit

Permalink
Add extension build artifacts to build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
buberdds committed May 7, 2024
1 parent d30dc3a commit 952e927
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 952e927

Please sign in to comment.