From 1a824e32337797f3f7dd41d74c290909940cd0df Mon Sep 17 00:00:00 2001 From: Seongho Bae Date: Tue, 28 Apr 2026 09:41:29 +0900 Subject: [PATCH 1/2] fix(ci): add --repo flag to gh release upload to fix git error --- .github/workflows/build-baseline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-baseline.yml b/.github/workflows/build-baseline.yml index 858c7374..3b211dfc 100644 --- a/.github/workflows/build-baseline.yml +++ b/.github/workflows/build-baseline.yml @@ -315,7 +315,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} RELEASE_TAG: ${{ github.event.release.tag_name }} - run: gh release upload "$RELEASE_TAG" artifacts/*.zip artifacts/*.sha256 artifacts/*.manifest.txt --clobber + run: gh release upload "$RELEASE_TAG" artifacts/*.zip artifacts/*.sha256 artifacts/*.manifest.txt --clobber --repo ${{ github.repository }} attach-macos-release-artifact: name: release-artifact / macos @@ -336,4 +336,4 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} RELEASE_TAG: ${{ github.event.release.tag_name }} - run: gh release upload "$RELEASE_TAG" artifacts/*.zip artifacts/*.sha256 artifacts/*.manifest.txt --clobber + run: gh release upload "$RELEASE_TAG" artifacts/*.zip artifacts/*.sha256 artifacts/*.manifest.txt --clobber --repo ${{ github.repository }} From a701233e27dd9f2aec8abdc9bff588e1ee720bb6 Mon Sep 17 00:00:00 2001 From: Seongho Bae Date: Tue, 28 Apr 2026 10:05:06 +0900 Subject: [PATCH 2/2] trigger ci