fix(ci): stub appcast.xml to unblock publish-next#2119
Merged
alexey-pelykh merged 1 commit intomainfrom Apr 8, 2026
Merged
Conversation
…ks publish-next appcast.xml was deleted in the GUT audit (ef1839b) but release-check.ts still reads it unconditionally, crashing publish-next on every push to main. - Add minimal empty Sparkle RSS feed with RemoteClaw branding - Remove the zero-items error guard (no macOS releases yet, so zero items is the correct state — per-item validation remains intact) - Add test covering empty feed acceptance Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
alexey-pelykh
added a commit
that referenced
this pull request
Apr 18, 2026
B8 DIFF-SYNC (#2395) inadvertently re-introduced upstream's strict `appcast.xml contains no <item> entries` validation, breaking the fork's publish-next workflow. Fork has a stub empty appcast.xml because macOS updates aren't published yet (per #2119, #6d51373c0e). The upstream validator in v2026.3.12 restored the strict check that was previously relaxed. Reverts just the zero-items error line from scripts/release-check.ts; preserves all other upstream improvements to the validator (new plugin-sdk required paths, collectForbiddenPackPaths extraction). Test: release-check.test.ts 9/9 pass.
alexey-pelykh
added a commit
that referenced
this pull request
Apr 18, 2026
B8 DIFF-SYNC (#2395) inadvertently re-introduced upstream's strict `appcast.xml contains no <item> entries` validation, breaking the fork's publish-next workflow. Fork has a stub empty appcast.xml because macOS updates aren't published yet (per #2119, #6d51373c0e). The upstream validator in v2026.3.12 restored the strict check that was previously relaxed. Reverts just the zero-items error line from scripts/release-check.ts; preserves all other upstream improvements to the validator (new plugin-sdk required paths, collectForbiddenPackPaths extraction). Test: release-check.test.ts 9/9 pass.
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
publish-nextfails on every push to main becauserelease-check.tsunconditionally readsappcast.xml, which was deleted in the GUT audit (ef1839b)appcast.xml) with RemoteClaw branding — owns the file for future macOS releasesTest plan
npx vitest run test/release-check.test.ts— 4 tests pass (3 existing + 1 new)publish-nextsucceeds (the fix target)🤖 Generated with Claude Code