We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 561fbee commit d00dbccCopy full SHA for d00dbcc
.github/workflows/build-macos-installer.yml
@@ -350,8 +350,8 @@ jobs:
350
# Copy uninstall script to app bundle for user access
351
cp scripts/uninstall_cleanuparr.sh dist/Cleanuparr.app/Contents/Resources/
352
353
- # Determine package name
354
- if [[ "${{ github.ref }}" =~ ^refs/tags/ ]]; then
+ # Determine package name - if app_version input was provided, it's a release build
+ if [[ -n "${{ inputs.app_version }}" ]] || [[ "${{ github.ref }}" =~ ^refs/tags/ ]]; then
355
pkg_name="Cleanuparr-${{ env.appVersion }}-macos-${{ matrix.artifact_suffix }}.pkg"
356
else
357
pkg_name="Cleanuparr-${{ env.appVersion }}-macos-${{ matrix.artifact_suffix }}-dev.pkg"
0 commit comments