Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
update github workflow to publish web3js-ext
Browse files Browse the repository at this point in the history
  • Loading branch information
Tu.Le committed Dec 5, 2023
1 parent 39776c6 commit 753c513
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,17 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
cd js-ext-core && npx pnpm --filter "@klaytn/*" -r publish --publish-branch main --no-git-check --access=public && cd -
cd js-ext-core && npx pnpm --filter "@klaytn/*" -r publish --publish-branch main --no-git-check --access=public && cd -
- name: generate web3js-ext
if: steps.verify-changed-files.outputs.web3js-ext_any_changed == 'true'
shell: bash
run: |
cd web3js-ext && npm install && npm run build && cd -
- name: publish web3js-ext
if: steps.verify-changed-files.outputs.web3js-ext_any_changed == 'true'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
cd web3js-ext && npx pnpm --filter "@klaytn/*" -r publish --publish-branch main --no-git-check --access=public && cd -

0 comments on commit 753c513

Please sign in to comment.