Skip to content

Commit

Permalink
Merge pull request #112 from CityOfZion/CU-86dt7kch1
Browse files Browse the repository at this point in the history
CU-86dt7kch1 - Fix NPM publish gh-action and publish the last changes
  • Loading branch information
melanke authored Apr 10, 2024
2 parents b9b3d05 + 5f0fb9f commit 550f302
Show file tree
Hide file tree
Showing 11 changed files with 66 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ jobs:
path: './docs'
- name: Deploy GitHub Pages
uses: actions/deploy-pages@v2
# Adding all modified files to ensure 'rush change --verify' correctly identifies changes.
# This is because the command only recognizes changes in files that were added in the commit.
- name: Rush Change
run: |
git add .
rush change --message "Update package.json version(s)" --bump-type none --bulk
- name: Commit and Push package.json version update
run: |
git add .
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "Update package.json version(s)",
"type": "none",
"packageName": "@cityofzion/wallet-connect-sdk-core"
}
],
"packageName": "@cityofzion/wallet-connect-sdk-core",
"email": "80922146+LeonardoDizConde@users.noreply.github.com"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "Update package.json version(s)",
"type": "none",
"packageName": "@cityofzion/wallet-connect-sdk-react"
}
],
"packageName": "@cityofzion/wallet-connect-sdk-react",
"email": "80922146+LeonardoDizConde@users.noreply.github.com"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "Update package.json version(s)",
"type": "none",
"packageName": "@cityofzion/wallet-connect-sdk-svelte"
}
],
"packageName": "@cityofzion/wallet-connect-sdk-svelte",
"email": "80922146+LeonardoDizConde@users.noreply.github.com"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "Update package.json version(s)",
"type": "none",
"packageName": "@cityofzion/wallet-connect-sdk-wallet-core"
}
],
"packageName": "@cityofzion/wallet-connect-sdk-wallet-core",
"email": "80922146+LeonardoDizConde@users.noreply.github.com"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "Update package.json version(s)",
"type": "none",
"packageName": "@cityofzion/wallet-connect-sdk-wallet-react"
}
],
"packageName": "@cityofzion/wallet-connect-sdk-wallet-react",
"email": "80922146+LeonardoDizConde@users.noreply.github.com"
}
2 changes: 1 addition & 1 deletion packages/wallet-connect-sdk-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cityofzion/wallet-connect-sdk-core",
"version": "3.2.0",
"version": "3.2.1",
"description": "Wallet-Connect-SDK Core functionality",
"keywords": [
"wallet",
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-connect-sdk-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cityofzion/wallet-connect-sdk-react",
"version": "3.2.0",
"version": "3.2.1",
"description": "Wallet-Connect-SDK to be used on React Apps",
"keywords": [
"wallet",
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-connect-sdk-svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cityofzion/wallet-connect-sdk-svelte",
"version": "0.2.0",
"version": "0.2.1",
"description": "Wallet-Connect-SDK to be used on Svelte Apps",
"main": "dist/index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-connect-sdk-wallet-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cityofzion/wallet-connect-sdk-wallet-core",
"version": "4.0.0",
"version": "4.0.1",
"description": "Wallet-Connect-SDK wallet-side core functionality",
"keywords": [
"wallet",
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-connect-sdk-wallet-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cityofzion/wallet-connect-sdk-wallet-react",
"version": "4.0.0",
"version": "4.0.1",
"description": "Wallet-Connect-SDK wallet-side to be used on React Apps",
"keywords": [
"wallet",
Expand Down

0 comments on commit 550f302

Please sign in to comment.