This repository was archived by the owner on Apr 18, 2025. It is now read-only.
File tree 3 files changed +22
-1
lines changed
adapters/rainbowkit-connector
3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 31
31
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
32
32
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
33
33
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
34
+
35
+ - name : Set version from publishedPackages
36
+ id : setVersion
37
+ if : steps.changesets.outputs.published == 'true'
38
+ env :
39
+ PACKAGE_VERSION : ${{ steps.changesets.outputs.publishedPackages }}
40
+ run : echo "PACKAGE_VERSION=$(echo $PACKAGE_VERSION | jq -r '.[0].version')" >> $GITHUB_OUTPUT
41
+
42
+ - name : Trigger example repo github action
43
+ if : steps.changesets.outputs.published == 'true'
44
+ run : |
45
+ curl -H "Authorization: Bearer ${{ secrets.DEV_GITHUB_TOKEN }}" \
46
+ -H 'Accept: application/vnd.github.everest-preview+json' \
47
+ "https://api.github.com/repos/blocto/blocto-sdk-examples/dispatches" \
48
+ -d '{"event_type": "update-package", "client_payload": {"version": "${{ steps.setVersion.outputs.PACKAGE_VERSION }}" }}'
Original file line number Diff line number Diff line change 1
1
# @blocto/rainbowkit-connector
2
2
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 605ba8d: wagmi and rainbowkit v1 release
8
+
3
9
## 0.2.9
4
10
5
11
### Patch Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @blocto/rainbowkit-connector" ,
3
- "version" : " 0.2.9 " ,
3
+ "version" : " 1.0.0 " ,
4
4
"description" : " blocto wallet connector to use rainbowkit" ,
5
5
"author" : " Blocto Wallet" ,
6
6
"main" : " ./dist/index.js" ,
You can’t perform that action at this time.
0 commit comments