Skip to content

Commit d15b90c

Browse files
committed
Fix: Update release workflow to match proper version tagging
Signed-off-by: Jakub Dzikowski <[email protected]>
1 parent 8e7f3ff commit d15b90c

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/release-on-tag.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release on tag
33
on:
44
push:
55
tags:
6-
- 'v*.*.*'
6+
- '*.*.*'
77

88
jobs:
99
release:
@@ -15,9 +15,7 @@ jobs:
1515

1616
- name: Verify version
1717
run: |
18-
TAG=$(git describe --tags --abbrev=0)
19-
VERSION=${TAG:1}
20-
echo "TAG: $TAG"
18+
VERSION=$(git describe --tags --abbrev=0)
2119
echo "VERSION: $VERSION"
2220
PKG_JSON_VERSION=$(jq -r '.version' <"$GITHUB_WORKSPACE/package.json")
2321
if [ "$VERSION" != "$PKG_JSON_VERSION" ]; then
@@ -53,7 +51,7 @@ jobs:
5351
5452
- name: Create next development version PR
5553
run: |
56-
./bump_version.sh unstable
54+
./bump-version.sh unstable
5755
NEW_VERSION=$(jq -r '.version' <"$GITHUB_WORKSPACE/package.json")
5856
BRANCH_NAME="bump-version-to-$NEW_VERSION"
5957
git checkout -b $BRANCH_NAME

0 commit comments

Comments
 (0)