Add Linux .deb and .AppImage builds to CI#37
Open
pedrofariasx wants to merge 5 commits into
Open
Conversation
…na-appindicator3-dev)
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.
Summary
Adds Linux packaging to the release workflow so tagged releases produce
.deband.AppImageartifacts alongside the existing Windows NSIS installer.Changes
src-tauri/tauri.conf.json: addeddebandappimageto bundletargetsand alinux.debsection (Tauri auto-detects shared-library dependencies)..github/workflows/release.yml:windows-latest→ nsis,ubuntu-latest→ deb,appimage) withfail-fast: false.libwebkit2gtk-4.1-dev,librsvg2-dev,patchelf,libssl-dev,libgtk-3-dev,libsoup-3.0-dev,libayatana-appindicator3-dev).--bundlesper OS so each runner builds only its supported formats.TAURI_SIGNING_PRIVATE_KEYis present; on forks without the secret, updater artifacts are disabled via--configso the build doesn't fail trying to sign with an empty key.Testing
Verified on a fork run: the Ubuntu job compiled the app and produced both bundles successfully.
Run: https://github.com/pedrofariasx/YTubic/actions/runs/29449913404/job/87469557857
The official repo build path is unchanged: when
TAURI_SIGNING_PRIVATE_KEYis set, updater artifacts are still signed as before.