We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f27683 commit 5349cbbCopy full SHA for 5349cbb
.github/workflows/publish-npm-deserializer.yml
@@ -13,8 +13,24 @@ on:
13
default: nightly
14
15
jobs:
16
+ build-sdk:
17
+ runs-on: ubuntu-latest
18
+ container: node:18
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - name: Set up sdk
22
+ working-directory: packages/sdk
23
+ run: |
24
+ npm ci
25
+ npm run codegen
26
+ npm run build
27
+ - uses: actions/upload-artifact@v4
28
+ with:
29
+ name: sdk-dist
30
+ path: packages/sdk/dist
31
+
32
publish-npm:
- needs: set-env
33
+ needs: [build-sdk]
34
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/publish-npm.yml@feat/publish-npm
35
with:
36
scope: '@iexec/deserializer'
0 commit comments