We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e7f3ff commit d15b90cCopy full SHA for d15b90c
.github/workflows/release-on-tag.yml
@@ -3,7 +3,7 @@ name: Release on tag
3
on:
4
push:
5
tags:
6
- - 'v*.*.*'
+ - '*.*.*'
7
8
jobs:
9
release:
@@ -15,9 +15,7 @@ jobs:
15
16
- name: Verify version
17
run: |
18
- TAG=$(git describe --tags --abbrev=0)
19
- VERSION=${TAG:1}
20
- echo "TAG: $TAG"
+ VERSION=$(git describe --tags --abbrev=0)
21
echo "VERSION: $VERSION"
22
PKG_JSON_VERSION=$(jq -r '.version' <"$GITHUB_WORKSPACE/package.json")
23
if [ "$VERSION" != "$PKG_JSON_VERSION" ]; then
@@ -53,7 +51,7 @@ jobs:
53
51
54
52
- name: Create next development version PR
55
56
- ./bump_version.sh unstable
+ ./bump-version.sh unstable
57
NEW_VERSION=$(jq -r '.version' <"$GITHUB_WORKSPACE/package.json")
58
BRANCH_NAME="bump-version-to-$NEW_VERSION"
59
git checkout -b $BRANCH_NAME
0 commit comments