Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoieni committed Apr 25, 2024
1 parent b2a9d76 commit abf56ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,19 @@ jobs:
exit 1
fi
release_version = $(echo "$RELEASES" | jq '.[0].version')
release_version=$(echo "$RELEASES" | jq '.[0].version')
if [ $release_version != "0.1.0" ]; then
echo "bad version"
exit 1
fi
release_tag = $(echo "$RELEASES" | jq '.[0].tag')
release_tag=$(echo "$RELEASES" | jq '.[0].tag')
if [ $release_tag != "v0.1.0" ]; then
echo "bad tag"
exit 1
fi
release_package_name = $(echo "$RELEASES" | jq '.[0].package_name')
release_package_name=$(echo "$RELEASES" | jq '.[0].package_name')
if [ $release_package_name != "marco-test-one" ]; then
echo "bad package name"
exit 1
Expand Down

0 comments on commit abf56ad

Please sign in to comment.