Skip to content

Commit

Permalink
Allow AppImage verification when explicitly requested
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartin16 committed Oct 24, 2023
1 parent 4bbb9bb commit c41e689
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/app-build-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,16 +257,17 @@ jobs:
# binary dependency issues that it's just not worth the oxygen to keep this thing
# alive.
#
# - name: Build AppImage project
# if: >
# startsWith(inputs.runner-os, 'ubuntu')
# && contains(fromJSON('["", "Linux"]'), inputs.target-platform)
# && contains(fromJSON('["", "AppImage"]'), inputs.target-format)
# run: |
# cd tests/apps/verify-${{ inputs.framework }}
# briefcase create linux AppImage
# briefcase build linux AppImage
# briefcase package linux AppImage --adhoc-sign
# Only runs when target platform and format are explicitly Linux and AppImage.
- name: Build AppImage project
if: >
startsWith(inputs.runner-os, 'ubuntu')
&& contains(fromJSON('["Linux"]'), inputs.target-platform)
&& contains(fromJSON('["AppImage"]'), inputs.target-format)
run: |
cd tests/apps/verify-${{ inputs.framework }}
briefcase create linux AppImage
briefcase build linux AppImage
briefcase package linux AppImage --adhoc-sign
- name: Build Flatpak project
if: >
Expand Down

0 comments on commit c41e689

Please sign in to comment.