From d923e655fef46fc646c143cba43556aaef675db3 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Sat, 7 Feb 2026 00:09:42 -0500 Subject: [PATCH] fix: correct GitHub API URLs in release workflow Two GitHub API URLs still had the old repo name (polaris-headlamp-plugin instead of headlamp-polaris-plugin), causing the GitHub release step to target the wrong repository. Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index a096c94..c402bd0 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -115,7 +115,7 @@ jobs: continue-on-error: true run: | [ "$SKIP_BUILD" = "true" ] && exit 0 - GH_API="https://api.github.com/repos/cpfarhood/polaris-headlamp-plugin" + GH_API="https://api.github.com/repos/cpfarhood/headlamp-polaris-plugin" # Create release or fetch existing one BODY=$(curl -s -X POST \ -H "Authorization: token ${{ secrets.GH_PAT }}" \ @@ -153,7 +153,7 @@ jobs: curl -sf -X POST \ -H "Authorization: token ${{ secrets.GH_PAT }}" \ -H "Content-Type: application/gzip" \ - "https://uploads.github.com/repos/cpfarhood/polaris-headlamp-plugin/releases/${RELEASE_ID}/assets?name=${TARBALL}" \ + "https://uploads.github.com/repos/cpfarhood/headlamp-polaris-plugin/releases/${RELEASE_ID}/assets?name=${TARBALL}" \ --data-binary "@${TARBALL}" echo "GitHub release updated with same tarball"