Skip to content

Commit 7495656

Browse files
authored
Fix escaping of env variables in release workflow once again (#268)
1 parent 7cf2963 commit 7495656

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/upload-artifacts.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616

1717
- name: parse-version-from-chart
1818
run: |
19-
VERSION=$(cat ./deploy/ydb-operator/Chart.yaml | sed -n 's/^version: //p')
19+
VERSION=$(cat ./deploy/ydb-operator/Chart.yaml | sed -n 's/^version: //p' | tr -d '\"')
2020
echo "VERSION=$VERSION" >> $GITHUB_ENV
2121
2222
- name: create-tag
2323
uses: mathieudutour/github-tag-action@v6.2
2424
with:
25-
tag_prefix: "v"
25+
tag_prefix: ""
2626
custom_tag: ${{ env.VERSION }}
2727
github_token: ${{ github.token }}
2828

0 commit comments

Comments
 (0)