File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ jobs:
208208 run : npm test
209209 working-directory : packages/webui
210210
211- - name : Upload final build artifacts
211+ - name : Upload wasm-utxo build artifacts
212212 if : inputs.upload-artifacts
213213 uses : actions/upload-artifact@v4
214214 with :
@@ -218,6 +218,15 @@ jobs:
218218 packages/wasm-utxo/dist/
219219 retention-days : 1
220220
221+ - name : Upload wasm-solana build artifacts
222+ if : inputs.upload-artifacts
223+ uses : actions/upload-artifact@v4
224+ with :
225+ name : wasm-solana-build
226+ path : |
227+ packages/wasm-solana/dist/
228+ retention-days : 1
229+
221230 # This job provides a stable "test / Test" status check for branch protection.
222231 # It runs after all other jobs complete successfully.
223232 gate :
Original file line number Diff line number Diff line change 1- name : Publish @bitgo/wasm-utxo
1+ name : Publish @bitgo/wasm packages
22on :
33 push :
44 branches :
@@ -30,12 +30,18 @@ jobs:
3030 with :
3131 fetch-depth : 0
3232
33- - name : Download build artifacts
33+ - name : Download wasm-utxo build artifacts
3434 uses : actions/download-artifact@v4
3535 with :
3636 name : wasm-utxo-build
3737 path : packages/wasm-utxo/
3838
39+ - name : Download wasm-solana build artifacts
40+ uses : actions/download-artifact@v4
41+ with :
42+ name : wasm-solana-build
43+ path : packages/wasm-solana/
44+
3945 - name : Setup Node
4046 uses : actions/setup-node@v4
4147 with :
You can’t perform that action at this time.
0 commit comments