Skip to content

Commit

Permalink
Fix Release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
valegagge authored Feb 3, 2023
1 parent 2f36e8a commit 9210c81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ jobs:
- name: degug check tag
id: debug_check_tag
run: |
if [[ ${{ steps.check_tag.outputs.exists }} ]]
if [[ "${{steps.check_tag.outputs.exists}}" == "true" ]]
then
echo "the version ${{ steps.get_version.outputs.version }} exist"
else
echo "the version ${{ steps.get_version.outputs.version }} NOT exist"
fi
- name: Create Release
id: create_release
if: ${{ ! steps.check_tag.outputs.exists }}
if: ${{ steps.check_tag.outputs.exists == 'false' }}
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 9210c81

Please sign in to comment.