Skip to content

Commit

Permalink
fix: correct boolean checks in release workflow for standalone flag
Browse files Browse the repository at this point in the history
  • Loading branch information
yuto-trd committed Jan 8, 2025
1 parent a0bbc23 commit 386785a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
- name: Save
uses: actions/upload-artifact@v4
with:
name: beutl-${{ matrix.rid }}${{ matrix.standalone == 'true' && '-standalone' || '' }}-${{ needs.determine-version.outputs.semVer }}
name: beutl-${{ matrix.rid }}${{ matrix.standalone == true && '-standalone' || '' }}-${{ needs.determine-version.outputs.semVer }}
path: ./artifacts/*.zip

build-windows-installer:
Expand Down Expand Up @@ -140,8 +140,8 @@ jobs:
- name: Save installer
uses: actions/upload-artifact@v4
with:
name: beutl${{ matrix.standalone == 'true' && '-standalone' || '' }}-setup
path: ./artifacts/beutl${{ matrix.standalone == 'true' && '-standalone' || '' }}-setup.exe
name: beutl${{ matrix.standalone == true && '-standalone' || '' }}-setup
path: ./artifacts/beutl${{ matrix.standalone == true && '-standalone' || '' }}-setup.exe

build-debian-package:
needs: [ determine-version, build-executable ]
Expand Down

0 comments on commit 386785a

Please sign in to comment.