From df300407ee06906e5b8f2dd1b8a970a1920fffc0 Mon Sep 17 00:00:00 2001 From: Manoel Aranda Neto Date: Fri, 8 Nov 2024 10:28:46 +0100 Subject: [PATCH 1/3] fix: release pipeline needs all images --- .github/workflows/release.yml | 4 ++-- Makefile | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4734e2a5f..c44a8dd29 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,8 +23,8 @@ jobs: - name: Git checkout uses: actions/checkout@v4 - - name: Install Cocoapods - run: gem install cocoapods + - name: Bootstrap + run: make bootstrap - name: Release run: make releaseCocoaPods diff --git a/Makefile b/Makefile index 4c66c0225..d46356894 100644 --- a/Makefile +++ b/Makefile @@ -54,6 +54,7 @@ api: # requires gem and brew # xcpretty needs 'export LANG=en_US.UTF-8' bootstrap: + gem install cocoapods gem install xcpretty brew install swiftlint brew install swiftformat From 93c5d526653d3a9f52d146649dd5bb3fa727a235 Mon Sep 17 00:00:00 2001 From: Manoel Aranda Neto Date: Fri, 8 Nov 2024 10:30:07 +0100 Subject: [PATCH 2/3] fix --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c44a8dd29..6ce5efec7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,6 +22,9 @@ jobs: steps: - name: Git checkout uses: actions/checkout@v4 + - uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: latest-stable - name: Bootstrap run: make bootstrap From 81d33f597ca19b9c7243105972130e2501836728 Mon Sep 17 00:00:00 2001 From: Manoel Aranda Neto Date: Fri, 8 Nov 2024 10:30:47 +0100 Subject: [PATCH 3/3] fix --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6ce5efec7..0ec919fed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: release: name: Release - runs-on: macos-latest + runs-on: macos-13 env: COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} # Using Manoel's token for now