Skip to content

Commit

Permalink
fix: add wallet and provider packages to publish workflow (#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiorigam authored Feb 15, 2024
1 parent 4b86027 commit 8ac0754
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/publish-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,19 @@ jobs:
yarn publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

- name: Publish provider
run: |
cd packages/provider
yarn version --no-git-tag-version --new-version ${{ github.ref_name }}
yarn publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

- name: Publish wallet
run: |
cd packages/wallet
yarn version --no-git-tag-version --new-version ${{ github.ref_name }}
yarn publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

1 comment on commit 8ac0754

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test Coverage

Summary

Lines Statements Branches Functions
Coverage: 100%
100% (2520/2520) 100% (526/526) 100% (528/528)
Title Tests Skipped Failures Errors Time
core 409 0 💤 0 ❌ 0 🔥 1m 9s ⏱️
network 234 0 💤 0 ❌ 0 🔥 2m 35s ⏱️
errors 43 0 💤 0 ❌ 0 🔥 10.009s ⏱️

Please sign in to comment.