From 4c66f3e12470ff27ecb7b08a23669157ceabdbd2 Mon Sep 17 00:00:00 2001 From: Remy Moll Date: Sat, 19 Apr 2025 19:16:03 +0200 Subject: [PATCH] install bundlern when needed --- .gitea/workflows/frontend_build-app-ios.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/frontend_build-app-ios.yaml b/.gitea/workflows/frontend_build-app-ios.yaml index d55f41f..9eceb74 100644 --- a/.gitea/workflows/frontend_build-app-ios.yaml +++ b/.gitea/workflows/frontend_build-app-ios.yaml @@ -29,6 +29,12 @@ jobs: architecture: x64 cache: true + - name: Set up ruby env + uses: https://github.com/ruby/setup-ruby@v1 + with: + ruby-version: 3.3 + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + - name: Install dependencies and clean up run: | flutter pub get @@ -36,12 +42,6 @@ jobs: flutter clean bundle exec pod cache clean --all - - name: Set up ruby env - uses: https://github.com/ruby/setup-ruby@v1 - with: - ruby-version: 3.3 - bundler-cache: true # runs 'bundle install' and caches installed gems automatically - - name: Fetch tags from main branch # since this workflow is triggered by a pull request, we want to match the latest tag of the main branch id: build_name