Skip to content

Commit 6b2a832

Browse files
committed
fix: correct version retrieval from composer.json to package.json
1 parent b89dba7 commit 6b2a832

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/prepare-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fi
3434
3535
if [ $INPUT_VERSION = "next" ]; then
36-
CURR=$(jq -r .version composer.json)
36+
CURR=$(jq -r .version package.json)
3737
MAJOR=$(echo $CURR | cut -d. -f1)
3838
MINOR=$(echo $CURR | cut -d. -f2)
3939
PATCH=$(echo $CURR | cut -d. -f3)

0 commit comments

Comments
 (0)