Skip to content

Commit

Permalink
Fix 4
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny-stakewise committed Aug 20, 2024
1 parent 53037eb commit b0949cf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Check version
run: |
"project_name=${{ github.event.repository.name }}" >> $GITHUB_ENV
"project_version=`poetry version`" >> $GITHUB_ENV
"tag_name=${{ github.ref_name }}" >> $GITHUB_ENV
[ $project_version = "$project_name $tag_name" ]
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" ];

0 comments on commit b0949cf

Please sign in to comment.