-
Notifications
You must be signed in to change notification settings - Fork 0
feat(update): host AppImages on Azure Blob to fix GitHub rate-limit on rio update #545
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
amitsingh21
wants to merge
19
commits into
devel
Choose a base branch
from
feat/appimage-azure-blob
base: devel
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
cd12233
docs: design spec for AppImage hosting on Azure Blob
amitsingh21 52805e3
docs: implementation plan for AppImage Azure Blob hosting
amitsingh21 4d5268d
feat(update): add AppImage channel detection and blob URL builders
amitsingh21 d0406e0
feat(update): add channel-aware update-available check
amitsingh21 8836e9d
feat(update): fetch manifest and replace AppImage with checksum verify
amitsingh21 65e4486
style: move imports to top of test file (ruff E402)
amitsingh21 6801b93
fix(update): atomic AppImage swap, require sha256, timeouts, no devel…
amitsingh21 ec70efc
feat(update): route AppImage updates through Azure Blob channels
amitsingh21 0525715
fix(update): guard missing manifest version, add latest-path test, re…
amitsingh21 c04eb83
ci: stamp channel suffix into version for devel/dev AppImage builds
amitsingh21 8ffd598
ci: upload AppImage and latest.json manifest to Azure Blob
amitsingh21 733d0f0
ci: harden AppImage upload (mask SAS in trace, guard empty file, expl…
amitsingh21 24d4bb5
ci: upload devel/PR AppImages to Azure Blob, link blob URL on PRs
amitsingh21 a88f3cd
ci: upload release AppImage to Azure Blob via semantic-release
amitsingh21 151ef27
docs: document rio update channels and Azure Blob infra
amitsingh21 3ed3e74
fix(update): robust full write of AppImage via file object
amitsingh21 e98d0e2
fix(update): use PEP 440 local-version for channel marker so uv build…
amitsingh21 022b9d2
fix(update): detect AppImage via APPIMAGE env, drop GitHub artifact
amitsingh21 aa6138a
fix(update): address remaining Copilot review comments
amitsingh21 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This branch-sanitization one-liner (
tr -c '0-9A-Za-z' '-' | sed -E 's/-+/-/g; s/^-|-$//g') is duplicated verbatim inscripts/build-rio-appimage.sh(theSAFE_BRANCHcomputation). If one is edited without the other, this PR-comment link silently stops matching the real upload path. Consider computing the branch slug once (e.g. exposed as a step/job output from the build step) instead of keeping two copies in sync by comment convention.