Skip to content

Commit

Permalink
Fix 6
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny-stakewise committed Aug 20, 2024
1 parent bdcc49d commit 2264e59
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,7 @@ jobs:
echo "project_name=${{ github.event.repository.name }}" >> $GITHUB_ENV;
echo "project_version=`poetry version`" >> $GITHUB_ENV;
echo "tag_name=${{ github.ref_name }}" >> $GITHUB_ENV;
[ "$project_version" == "$project_name $tag_name" ];
if [ "$project_version" != "$project_name $tag_name" ] then
echo "Release version mismatch"
exit 1
fi;

0 comments on commit 2264e59

Please sign in to comment.