Skip to content

Commit 31fb1a2

Browse files
committed
fix(CI): fix version
Signed-off-by: Ales Verbic <[email protected]>
1 parent 8d1c7d2 commit 31fb1a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ jobs:
7878
git config --global user.name "github-actions[bot]"
7979
git config --global user.email "github-actions[bot]@users.noreply.github.com"
8080
git config --global --add safe.directory "$(pwd -P)"
81-
git commit -am "GHA: release version \${VERSION}"
82-
git tag v\${VERSION} -am "GHA: publish public-$GITHUB_REPO_NAME v\${VERSION}"
81+
git commit -am "GHA: release version ${VERSION}"
82+
git tag v${VERSION} -am "GHA: publish public-$GITHUB_REPO_NAME v${VERSION}"
8383
git log -1
84-
git push origin v\${VERSION}
84+
git push origin v${VERSION}
8585
git push origin HEAD:${{ inputs.branch }}
8686
8787
# Increment incremental version and set SNAPSHOT
@@ -92,6 +92,6 @@ jobs:
9292
9393
# Looks good! Now, for the git-fu for our SNAPSHOT version
9494
VERSION="$(cat VERSION)"
95-
git commit -am "GHA: SNAPSHOT version \${VERSION}"
95+
git commit -am "GHA: SNAPSHOT version ${VERSION}"
9696
git diff HEAD^ HEAD
9797
git push origin HEAD:${{ inputs.branch }}

0 commit comments

Comments
 (0)