From 55fc39ae7e6b51509f0f9b52b04cc1ac85913d63 Mon Sep 17 00:00:00 2001 From: Thomas Vidas Date: Wed, 9 Feb 2022 12:52:16 -0500 Subject: [PATCH] fix(ci): add token to ghr call in xcframework build action --- .github/workflows/publish-xcframework.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-xcframework.yml b/.github/workflows/publish-xcframework.yml index 6dc807525..f1e56e163 100644 --- a/.github/workflows/publish-xcframework.yml +++ b/.github/workflows/publish-xcframework.yml @@ -30,4 +30,4 @@ jobs: zip -r Capacitor.xcframework.zip Carthage/Build rm -rf ios/CapacitorCordova/CapacitorCordova.xcframework - name: Attach ZIP to latest release - run: ghr -replace $(git describe -tags --abbrev=0) Capacitor.xcframework.zip + run: ghr -t ${{ secrets.GITHUB_TOKEN }} -replace $(git describe -tags --abbrev=0) Capacitor.xcframework.zip