-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add building of all flatpak manifest targets (closes #48)
- Loading branch information
1 parent
21f840e
commit 185e524
Showing
1 changed file
with
48 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ on: | |
name: build-and-prerelease | ||
|
||
jobs: | ||
flatpak: | ||
name: Flatpak-prerelease | ||
flatpak-release-target: | ||
name: "Test build of flatpak release target" | ||
runs-on: ubuntu-latest | ||
container: | ||
image: bilelmoussaoui/flatpak-github-actions:gnome-46 | ||
|
@@ -19,7 +19,51 @@ jobs: | |
lfs: true | ||
- uses: bilelmoussaoui/flatpak-github-actions/[email protected] | ||
with: | ||
bundle: toolboxtuner.flatpak | ||
bundle: toolboxtuner-release.flatpak | ||
manifest-path: build-aux/org.kuchelmeister.ToolboxTuner.json | ||
run-tests: true | ||
cache-key: flatpak-builder-${{ github.sha }} | ||
upload-artifact: false | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: flatpak | ||
path: | | ||
*.flatpak | ||
flatpak-screenshot-target: | ||
name: "Test build of screenshot target" | ||
runs-on: ubuntu-latest | ||
container: | ||
image: bilelmoussaoui/flatpak-github-actions:gnome-46 | ||
options: --privileged | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- uses: bilelmoussaoui/flatpak-github-actions/[email protected] | ||
with: | ||
bundle: toolboxtuner-screenshot.flatpak | ||
manifest-path: build-aux/org.kuchelmeister.ToolboxTuner.Screenshot.json | ||
run-tests: true | ||
cache-key: flatpak-builder-${{ github.sha }} | ||
upload-artifact: false | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: flatpak | ||
path: | | ||
*.flatpak | ||
flatpak-dev-target: | ||
name: "Build flatpak dev/pre-release target" | ||
runs-on: ubuntu-latest | ||
container: | ||
image: bilelmoussaoui/flatpak-github-actions:gnome-46 | ||
options: --privileged | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- uses: bilelmoussaoui/flatpak-github-actions/[email protected] | ||
with: | ||
bundle: toolboxtuner-dev.flatpak | ||
manifest-path: build-aux/org.kuchelmeister.ToolboxTuner.Devel.json | ||
run-tests: true | ||
cache-key: flatpak-builder-${{ github.sha }} | ||
|
@@ -61,7 +105,7 @@ jobs: | |
automatic_release_tag: dev | ||
title: 'Latest Development Build' | ||
files: | | ||
**/*.flatpak | ||
**/*-dev.flatpak | ||
**/*.tar.gz | ||
**/*.sha256sum | ||
|