Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ jobs:
run: npm test
working-directory: packages/webui

- name: Upload final build artifacts
- name: Upload wasm-utxo build artifacts
if: inputs.upload-artifacts
uses: actions/upload-artifact@v4
with:
Expand All @@ -218,6 +218,15 @@ jobs:
packages/wasm-utxo/dist/
retention-days: 1

- name: Upload wasm-solana build artifacts
if: inputs.upload-artifacts
uses: actions/upload-artifact@v4
with:
name: wasm-solana-build
path: |
packages/wasm-solana/dist/
retention-days: 1

# This job provides a stable "test / Test" status check for branch protection.
# It runs after all other jobs complete successfully.
gate:
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish @bitgo/wasm-utxo
name: Publish @bitgo/wasm packages
on:
push:
branches:
Expand Down Expand Up @@ -30,12 +30,18 @@ jobs:
with:
fetch-depth: 0

- name: Download build artifacts
- name: Download wasm-utxo build artifacts
uses: actions/download-artifact@v4
with:
name: wasm-utxo-build
path: packages/wasm-utxo/

- name: Download wasm-solana build artifacts
uses: actions/download-artifact@v4
with:
name: wasm-solana-build
path: packages/wasm-solana/

- name: Setup Node
uses: actions/setup-node@v4
with:
Expand Down