Skip to content

Commit

Permalink
debug npm-publish.yaml 5th
Browse files Browse the repository at this point in the history
Signed-off-by: rtang03 <[email protected]>
  • Loading branch information
rtang03 committed Jan 23, 2021
1 parent 3f66b01 commit 5227e3a
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/npm-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,17 @@ jobs:
run: yarn install --frozen-lockfile
- name: Run tsc for library packages
run: yarn tsc:lib
- name: Make public - fabric-cqrs
run: cd packages/fabric-cqrs && npm config set access public
- name: Make public - gateway-lib
run: cd packages/gateway-lib && npm config set access public
- name: Make public - operator
run: cd packages/operator && npm config set access public
- name: publish
run: yarn publish:lib
### NOTE: fabric-cqrs depends on operator
- name: publish - operator
run: cd packages/operator && npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: publish - fabric-cqrs
run: packages/fabric-cqrs && npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: publish - gateway-lib
run: packages/gateway-lib && npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 5227e3a

Please sign in to comment.