Skip to content

Commit

Permalink
Merge pull request #157 from ghga-de/fix-raw-string-in-verify-package…
Browse files Browse the repository at this point in the history
…-version

Output raw string
  • Loading branch information
ckaipf authored Nov 17, 2023
2 parents 30de032 + 103fab6 commit 54459aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
name: Verify package version vs tag version
# package version must be same with tag version
run: |
PKG_VER="$(jq .version package.json)"
PKG_VER="$(jq -r .version package.json)"
echo "Package version is $PKG_VER" >&2
echo "Tag version is ${{ steps.get_version_tag.outputs.version }}" >&2
if [ "$PKG_VER" != "${{ steps.get_version_tag.outputs.version }}" ]; then
Expand Down

0 comments on commit 54459aa

Please sign in to comment.