Skip to content

Commit e88003e

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

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
@@ -73,10 +73,10 @@ jobs:
7373
GITHUB_REPO_NAME="${GITHUB_REPOSITORY#*/}"
7474
7575
git config --global --add safe.directory "$(pwd -P)"
76-
git commit -am "GHA: release version \${VERSION}"
77-
git tag v\${VERSION} -am "GHA: publish public-$GITHUB_REPO_NAME v\${VERSION}"
76+
git commit -am "GHA: release version ${VERSION}"
77+
git tag v${VERSION} -am "GHA: publish public-$GITHUB_REPO_NAME v${VERSION}"
7878
git log -1
79-
git push origin v\${VERSION}
79+
git push origin v${VERSION}
8080
git push origin HEAD:${{ inputs.branch }}
8181
8282
# Increment incremental version and set SNAPSHOT
@@ -87,6 +87,6 @@ jobs:
8787
8888
# Looks good! Now, for the git-fu for our SNAPSHOT version
8989
VERSION="$(cat VERSION)"
90-
git commit -am "GHA: SNAPSHOT version \${VERSION}"
90+
git commit -am "GHA: SNAPSHOT version ${VERSION}"
9191
git diff HEAD^ HEAD
9292
git push origin HEAD:${{ inputs.branch }}

0 commit comments

Comments
 (0)