Skip to content

Commit

Permalink
Remove added quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
TimmersThomas committed May 3, 2024
1 parent 606cd8a commit 8066f1d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
env:
goreleaser_meta: ${{ steps.goreleaser.outputs.metadata }}
run: |
version=$( echo $goreleaser_meta | jq '.version' )
commit=$( echo $goreleaser_meta | jq '.commit' )
date=$( echo $goreleaser_meta | jq '.date' )
version=$( echo $goreleaser_meta | jq -r '.version' )
commit=$( echo $goreleaser_meta | jq -r '.commit' )
date=$( echo $goreleaser_meta | jq -r '.date' )
echo "version=$version" >> $GITHUB_OUTPUT
echo "commit=$commit" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 8066f1d

Please sign in to comment.