diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3f55110..5b1fcd7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: - name: Check if tag exists id: exists run: | - EXISTS=$(git tag | grep ${{ steps.version.outputs.VERSION }}) + EXISTS=$(git tag | grep ${{ steps.version.outputs.VERSION }} || true) echo "EXISTS=$EXISTS" >> $GITHUB_OUTPUT - name: Fail if tag exists