fix(app): add explicit repositoryUrl for semantic-release#437
Merged
DatGreekChick merged 1 commit intomainfrom Apr 19, 2026
Merged
fix(app): add explicit repositoryUrl for semantic-release#437DatGreekChick merged 1 commit intomainfrom
DatGreekChick merged 1 commit intomainfrom
Conversation
The repository field in package.json uses a protocol-less URL
("github.com/...") which semantic-release cannot parse, producing
a null host. Adding repositoryUrl explicitly resolves this.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #437 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 3 3
Lines 110 110
=========================================
Hits 110 110 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
Visit the preview URL for this PR (updated for commit 33f893a): https://elenicodes--pr437-fix-semantic-release-arcg1zze.web.app (expires Sun, 26 Apr 2026 00:39:33 GMT) 🔥 via Firebase Hosting GitHub Action 🌎 Sign: 2893a00bbe8f1f8b2d040782481f3b83b74bae08 |
|
🎉 This PR is included in version 3.0.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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.
🎯 Motivation
semantic-release fails to resolve the git remote because the
repositoryfield inpackage.jsonis"github.com/DatGreekChick/personal"— no protocol — so URL parsing producesnullas the host.✅ What's Changed
repositoryUrlto the release config pointing to the full HTTPS URL🧪 Testing
CI failure:
git ls-remote --heads 'https://x-access-token:[secure]@null/github.com/DatGreekChick/personal'— host was null due to unparseable repository field🔗 Links