From 324acedfadc4e20be473474aab9aa0c2c44565f8 Mon Sep 17 00:00:00 2001 From: qingzhuozhen <84748495+qingzhuozhen@users.noreply.github.com> Date: Wed, 7 Feb 2024 14:59:50 -0800 Subject: [PATCH] fix: fix for release pipeline (#478) --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b6f98fc0..d5ef3342 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,8 +27,8 @@ jobs: needs: [authorize] strategy: matrix: - ruby-version: ["2.7.x"] - node-version: ["12.x"] + ruby-version: ["2.7"] + node-version: ["16.x"] steps: - name: Checkout Amplitude-iOS uses: actions/checkout@v2 @@ -41,13 +41,13 @@ jobs: run: carthage bootstrap --use-xcframeworks - name: Setup Ruby - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} - name: Install Cocoapods run: | - gem install bundler + gem install bundler -v 2.4.22 bundle config path vendor/bundle bundle install pod install