31 lines
739 B
YAML
31 lines
739 B
YAML
name: Flatpak
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || format('{0}-{1}', github.ref, github.run_number) }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
Flatpak:
|
|
if: github.repository == 'LadybirdBrowser/ladybird'
|
|
name: Flatpak ${{ matrix.arch }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
arch: ['x86_64']
|
|
runner_labels: ['["blacksmith-16vcpu-ubuntu-2404"]']
|
|
|
|
include:
|
|
- arch: 'aarch64'
|
|
runner_labels: '["blacksmith-16vcpu-ubuntu-2404-arm"]'
|
|
|
|
secrets: inherit
|
|
uses: ./.github/workflows/flatpak-template.yml
|
|
with:
|
|
arch: ${{ matrix.arch }}
|
|
runner_labels: ${{ matrix.runner_labels }}
|