Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

chore: use a custom volume button #146

chore: use a custom volume button

chore: use a custom volume button #146

Workflow file for this run

on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
name: Flatpak Nightly
jobs:
flatpak:
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-nightly
options: --privileged
strategy:
matrix:
arch: [x86_64, aarch64]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install Docker
if: matrix.arch == 'aarch64'
run: |
dnf -y install docker
- name: Setup QEMU
if: matrix.arch == 'aarch64'
id: qemu
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: Prepare Runtime
run: |
flatpak --system install -y --noninteractive flathub org.freedesktop.Sdk.Extension.node18/${{ matrix.arch }}/23.08
flatpak --system install -y --noninteractive flathub org.freedesktop.Sdk.Extension.typescript/${{ matrix.arch }}/23.08
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: com.vixalien.decibels.nightly.flatpak
repository-name: gnome-nightly
repository-url: https://nightly.gnome.org/gnome-nightly.flatpakrepo
manifest-path: build-aux/flatpak/com.vixalien.decibels.json
cache-key: flatpak-builder-${{ github.sha }}-nightly
arch: ${{ matrix.arch }}