Skip to content

Commit

Permalink
Fix escaping of env variables in release workflow once again (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorres authored Nov 5, 2024
1 parent 7cf2963 commit 7495656
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/upload-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:

- name: parse-version-from-chart
run: |
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 '\"')
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: create-tag
uses: mathieudutour/github-tag-action@v6.2
with:
tag_prefix: "v"
tag_prefix: ""
custom_tag: ${{ env.VERSION }}
github_token: ${{ github.token }}

Expand Down

0 comments on commit 7495656

Please sign in to comment.