-
Notifications
You must be signed in to change notification settings - Fork 7
34 lines (32 loc) · 914 Bytes
/
build-release-linux.yml
File metadata and controls
34 lines (32 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Release Linux Flatpak
on:
push:
branches:
- "main"
workflow_dispatch:
concurrency:
group: release-linux-${{ github.ref }}
cancel-in-progress: false
jobs:
flatpak-release:
name: Build Release Linux Flatpak
container:
image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-49
options: --privileged
strategy:
matrix:
variant:
- arch: x86_64
runner: ubuntu-24.04
- arch: aarch64
runner: ubuntu-24.04-arm
runs-on: ${{ matrix.variant.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Flatpak Builder
uses: flatpak/flatpak-github-actions/flatpak-builder@v6.4
with:
bundle: io.github.dzheremi2.lrcmake-gtk.flatpak
manifest-path: build-aux/flatpak/io.github.dzheremi2.lrcmake-gtk.yaml
arch: ${{ matrix.variant.arch }}