From 1598a77ec2a4d623c50bc5d30b1732e198fb3886 Mon Sep 17 00:00:00 2001 From: Andy Uhnak Date: Thu, 14 Jul 2022 08:44:55 +0100 Subject: [PATCH] Install sentry-cli --- .github/workflows/release-alpha.yml | 11 +++++------ Brewfile | 1 + 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release-alpha.yml b/.github/workflows/release-alpha.yml index 14b460919..f9c45d4f0 100644 --- a/.github/workflows/release-alpha.yml +++ b/.github/workflows/release-alpha.yml @@ -49,13 +49,13 @@ jobs: restore-keys: | ${{ runner.os }}-pods- - # Note: it is recommended to use setup-ruby action to cache gems - # https://github.com/actions/cache/blob/main/examples.md#ruby---bundler - name: Cache Ruby gems - uses: ruby/setup-ruby@v1 + uses: actions/cache@v2 with: - ruby-version: 2.6.9 - bundler-cache: true + path: vendor/bundle + key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} + restore-keys: | + ${{ runner.os }}-gems- # Make sure we use the latest version of MatrixSDK - name: Reset MatrixSDK pod @@ -69,7 +69,6 @@ jobs: run: | bundle config path vendor/bundle bundle install --jobs 4 --retry 3 - bundle exec fastlane update_plugins - name: Use right MatrixSDK versions run: bundle exec fastlane point_dependencies_to_related_branches diff --git a/Brewfile b/Brewfile index f3c727fda..e7b7707b9 100644 --- a/Brewfile +++ b/Brewfile @@ -1,2 +1,3 @@ brew "xcodegen" brew "mint" +brew "getsentry/tools/sentry-cli"