Skip to content

Commit 5d3fa35

Browse files
committed
ci: fix version variable set
1 parent 4e7aa60 commit 5d3fa35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tag-release-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Get the current version
5252
id: get_version
5353
run: |
54-
VERSION=v$(cat Cargo.toml | grep -m 1 version | grep -o -P "\d+\.\d+\.\d+")
54+
VERSION=$(cat Cargo.toml | grep -m 1 version | grep -o -P "\d+\.\d+\.\d+")
5555
echo "VERSION=$VERSION" >> $GITHUB_ENV
5656
5757
- name: Get Changelog line

0 commit comments

Comments
 (0)