Skip to content

Commit

Permalink
💚 incorrectly evaluated conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
Roms1383 committed Sep 2, 2024
1 parent 1af3978 commit 0a67f40
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 @@ -36,15 +36,15 @@ jobs:
- name: Bundle mod files
run: just ci 'Audioware-windows-latest-${{ github.ref_name }}'
- name: Zip files
if: ${{ env.IS_DRAFT || env.IS_PRERELEASE }}
if: ${{ fromJSON(env.IS_DRAFT) || fromJSON(env.IS_PRERELEASE) }}
uses: thedoctor0/[email protected]
with:
type: zip
filename: Audioware-windows-latest-${{ github.ref_name }}.zip
directory: Audioware-windows-latest-${{ github.ref_name }}
path: .
- name: Zip files
if: ${{ !env.IS_DRAFT && !env.IS_PRERELEASE }}
if: ${{ !fromJSON(env.IS_DRAFT) && !fromJSON(env.IS_PRERELEASE) }}
uses: thedoctor0/[email protected]
with:
type: zip
Expand Down

0 comments on commit 0a67f40

Please sign in to comment.