Skip to content

Commit 055a743

Browse files
committed
ci: fix auto release workflow
1 parent 6213a51 commit 055a743

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/auto_draft_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
echo "bump_type=$bump_type" >> "$GITHUB_OUTPUT"
4949
5050
- name: "Version and Publish"
51-
if : ${{ steps.determine_version.outputs.bump_type != "none" }}
51+
if : ${{ steps.determine_version.outputs.bump_type != 'none' }}
5252
run: |
5353
git config user.name "${{ github.actor }}"
5454
git config user.email "${{ github.actor }}@users.noreply.github.com"
@@ -61,7 +61,7 @@ jobs:
6161
6262
echo "latest_tag=$latest_tag" >> "$GITHUB_OUTPUT"
6363
- name: "Draft GitHub Release"
64-
if: ${{ steps.determine_version.outputs.bump_type != "none" }}
64+
if: ${{ steps.determine_version.outputs.bump_type != 'none' }}
6565
uses: msoftprops/action-gh-release@v2
6666
with:
6767
prerelease: false

0 commit comments

Comments
 (0)