Skip to content

Commit 6cbf573

Browse files
committed
fix: extension release version should read from extension package.json
1 parent d4612db commit 6cbf573

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release-wallet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
id: set-environment-variables
5555
run: |
5656
COMMIT_HASH=$(git rev-parse --short $SHA)
57-
BASE_VERSION=$(node -e 'console.log(require("./package.json").version)')
57+
BASE_VERSION=$(node -e 'console.log(require("./apps/extension/package.json").version)')
5858
echo "VERSION=v$BASE_VERSION-$COMMIT_HASH" >> "$GITHUB_OUTPUT"
5959
env:
6060
SHA: ${{ github.sha }}

apps/extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@namada/extension",
3-
"version": "0.2.4",
3+
"version": "0.2.5",
44
"description": "Namada Browser Extension",
55
"repository": "https://github.com/anoma/namada-interface/",
66
"author": "Heliax Dev <[email protected]>",

0 commit comments

Comments
 (0)