File tree Expand file tree Collapse file tree 1 file changed +5
-36
lines changed
Expand file tree Collapse file tree 1 file changed +5
-36
lines changed Original file line number Diff line number Diff line change 1313 default : nightly
1414
1515jobs :
16- build-sdk :
17- runs-on : ubuntu-latest
18- steps :
19- - uses : actions/checkout@v4
20- - name : Build SDK
21- working-directory : packages/sdk
22- run : |
23- npm ci
24- npm run codegen
25- npm run build
26- - name : Upload sdk/dist
27- uses : actions/upload-artifact@v4
28- with :
29- name : sdk-dist
30- path : packages/sdk/dist
31-
32- prepare-workspace :
33- needs : build-sdk
34- runs-on : ubuntu-latest
35- outputs :
36- environment : ${{ steps.set-env.outputs.resolved-environment }}
37- steps :
38- - uses : actions/checkout@v4
39-
40- - name : Download sdk/dist
41- uses : actions/download-artifact@v4
42- with :
43- name : sdk-dist
44- path : packages/sdk/dist
45-
46- - name : Upload full workspace
47- uses : actions/upload-artifact@v4
48- with :
49- name : full-workspace
50- path : .
51-
5216 publish-npm :
5317 needs : prepare-workspace
5418 uses : iExecBlockchainComputing/github-actions-workflows/.github/workflows/publish-npm.yml@feat/publish-npm
6125 working-directory : " packages/dataprotector-deserializer"
6226 install-command : |
6327 npm ci
28+ cd ../sdk
29+ npm ci
30+ npm run codegen
31+ npm run build
32+ cd ../dataprotector-deserializer
6433 npm run test:prepare
6534 secrets :
6635 npm-token : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments