Skip to content

ci: re-enable Coveralls coverage upload (Tier 1) #2140

ci: re-enable Coveralls coverage upload (Tier 1)

ci: re-enable Coveralls coverage upload (Tier 1) #2140

Workflow file for this run

name: Flatpak
on:
pull_request:
push:
branches:
- master
tags:
- v*
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
flatpak:
name: "Flatpak"
runs-on: ${{ matrix.image }}
strategy:
matrix:
include:
- { image: ubuntu-24.04, arch: x86_64 }
- { image: ubuntu-24.04-arm, arch: aarch64 }
fail-fast: false
container:
image: ghcr.io/flathub-infra/flatpak-github-actions:kde-6.9
options: --privileged
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
submodules: 'recursive'
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: io.ossia.score.${{ matrix.arch }}.flatpak
manifest-path: ./cmake/Deployment/Linux/Flatpak/io.ossia.score.yml
cache-key: flatpak-builder-${{ github.sha }}
arch: ${{ matrix.arch }}
- name: Continuous
uses: softprops/action-gh-release@v3
if: github.ref == 'refs/heads/master'
with:
name: "Continuous"
tag_name: "continuous"
body: "Continuous (development) build of ossia score, automatically rebuilt from the latest commit on master. For stable versions, see the tagged releases."
append_body: false
generate_release_notes: false
files: |
*.flatpak
- name: Release
uses: softprops/action-gh-release@v3
if: startsWith(github.ref, 'refs/tags/')
with:
body: ""
append_body: true
generate_release_notes: false
files: |
*.flatpak