Revisiting the GitHub Actions Release system (.flatpak + .deb)#1204
Merged
Stefterv merged 9 commits intoprocessing:mainfrom Feb 2, 2026
Merged
Revisiting the GitHub Actions Release system (.flatpak + .deb)#1204Stefterv merged 9 commits intoprocessing:mainfrom
Stefterv merged 9 commits intoprocessing:mainfrom
Conversation
|
Maybe also add the AppImage universal format? |
kaechele
reviewed
Oct 1, 2025
| workingDir = dir.file("../flatpak").asFile | ||
| commandLine( | ||
| "flatpak-builder", | ||
| "--install-deps-from=https://flathub.org/repo/flathub.flatpakrepo", |
There was a problem hiding this comment.
This is not how --install-deps-from works.
You'll need to
commandLine(
"flatpak",
"remote-add",
"--user",
"--if-not-exists",
"flathub",
"https://flathub.org/repo/flathub.flatpakrepo"
)first and then --install-deps-from=flathub.
kaechele
reviewed
Oct 1, 2025
| @@ -0,0 +1,38 @@ | |||
| id: $identifier | |||
| runtime: org.freedesktop.Platform | |||
| runtime-version: '24.08' | |||
This was referenced Nov 24, 2025
|
Bumping this because I also want an up-to-date Flatpak package (I try to avoid using Snap) |
624fdf3 to
7c520c0
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Out of caution we kept the Ant GitHub Actions in the repository, this PR will remove them and introduce a revised version of the Gradle based GitHub Actions, providing the following.
app/linuxsimilar to macOS and Windows.Closes #890
Closes #1211
and includes #1202
TODO
- Separate out Windows signing- Separate out macOS notarisationFollow up tasks