From 3aeea9d18c90a8719168a8409056f0fb6ec8cf8a Mon Sep 17 00:00:00 2001 From: Drew Smirnoff Date: Sat, 25 Apr 2026 23:01:38 +0400 Subject: [PATCH] ci: use base repo (#1014) --- .github/workflows/bot-build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bot-build.yml b/.github/workflows/bot-build.yml index bf6251f1b8705afcbdef5ec171345f956c85f972..e0237b707e33ae59573479abef8e72d22cac1a63 100644 --- a/.github/workflows/bot-build.yml +++ b/.github/workflows/bot-build.yml @@ -170,13 +170,14 @@ jobs: SHORT_SHA="${SHA:0:7}" # Delete existing preview release for this PR - gh release delete "$TAG" --yes --cleanup-tag 2>/dev/null || true + gh release delete "$TAG" --yes --cleanup-tag -R "${{ github.repository }}" 2>/dev/null || true # Create prerelease gh release create "$TAG" dist/*.tar.gz dist/*.zip dist/checksums.txt \ --title "Preview Build (PR #${{ github.event.issue.number }} @ ${SHORT_SHA})" \ --notes "Preview build from PR #${{ github.event.issue.number }} at commit ${SHORT_SHA}. **Not for production use.**" \ - --prerelease + --prerelease \ + -R "${{ github.repository }}" echo "tag=$TAG" >> $GITHUB_OUTPUT