We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cf2963 commit 7495656Copy full SHA for 7495656
.github/workflows/upload-artifacts.yml
@@ -16,13 +16,13 @@ jobs:
16
17
- name: parse-version-from-chart
18
run: |
19
- VERSION=$(cat ./deploy/ydb-operator/Chart.yaml | sed -n 's/^version: //p')
+ VERSION=$(cat ./deploy/ydb-operator/Chart.yaml | sed -n 's/^version: //p' | tr -d '\"')
20
echo "VERSION=$VERSION" >> $GITHUB_ENV
21
22
- name: create-tag
23
uses: mathieudutour/github-tag-action@v6.2
24
with:
25
- tag_prefix: "v"
+ tag_prefix: ""
26
custom_tag: ${{ env.VERSION }}
27
github_token: ${{ github.token }}
28
0 commit comments