Skip to content

Commit

Permalink
chore: fix if
Browse files Browse the repository at this point in the history
  • Loading branch information
hexf00 committed Dec 19, 2024
1 parent e5d95f6 commit 9dcb743
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
timeout: 1200s

- uses: hexf00/upload-to-oss@v2
if: ${{ steps.version_type.outputs.is_stable || steps.version_type.outputs.is_dev }}
if: ${{ steps.version_type.outputs.is_stable == 'false' || steps.version_type.outputs.is_dev == 'true' }}
continue-on-error: true
with:
files: |
Expand All @@ -192,7 +192,7 @@ jobs:
with:
name: Release ${{ steps.set_version.outputs.version }}
draft: false
prerelease: ${{ !steps.version_type.outputs.is_stable }}
prerelease: ${{ steps.version_type.outputs.is_stable == 'false' }}
tag_name: ${{ steps.set_version.outputs.version }}
files: |
app/out/make/**/*.dmg
Expand Down

0 comments on commit 9dcb743

Please sign in to comment.