Skip to content

Commit

Permalink
Merge pull request #81 from rmartin16/app-build-opensuse
Browse files Browse the repository at this point in the history
Add build for openSUSE to `app-build-verify`
  • Loading branch information
freakboy3742 authored Jan 13, 2024
2 parents 0a8932a + a000669 commit 68f78e3
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/app-build-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ jobs:
briefcase build linux system --target debian:bullseye
briefcase package linux system --target debian:bullseye --adhoc-sign
- name: Build Linux System Project (RPM, Dockerized)
- name: Build Linux System Project (Fedora, Dockerized)
if: >
startsWith(inputs.runner-os, 'ubuntu')
&& contains(fromJSON('["", "Linux"]'), inputs.target-platform)
Expand All @@ -264,6 +264,18 @@ jobs:
briefcase build linux system --target archlinux:latest
briefcase package linux system --target archlinux:latest --adhoc-sign
- name: Build Linux System Project (openSUSE, Dockerized)
if: >
startsWith(inputs.runner-os, 'ubuntu')
&& contains(fromJSON('["", "Linux"]'), inputs.target-platform)
&& contains(fromJSON('["", "system"]'), inputs.target-format)
working-directory: ${{ steps.create.outputs.project-path }}
run: |
briefcase create linux system --target opensuse/tumbleweed:latest \
${{ steps.output-format.outputs.template-override }}
briefcase build linux system --target opensuse/tumbleweed:latest
briefcase package linux system --target opensuse/tumbleweed:latest --adhoc-sign
- name: Build AppImage Project
# 2023-09-11 AppImage dropped to "best effort" support.
#
Expand Down

0 comments on commit 68f78e3

Please sign in to comment.