From aaa16e7d2ad7c788733260b009f95ef8c9001eef Mon Sep 17 00:00:00 2001 From: Valentin REVERSAT Date: Mon, 13 Jul 2026 22:38:38 +0200 Subject: [PATCH] feat(ruby-version): Add an input for Ruber vesion Add a nez input for the Ruby version: `ruby_version` into the flutter.publish.yml workflow This change to prevent errors like this : https://github.com/vareversat/chabo-app/actions/runs/29206748976/job/86688237829 --- .github/workflows/flutter.publish.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/flutter.publish.yml b/.github/workflows/flutter.publish.yml index ac77cce..65e5b59 100644 --- a/.github/workflows/flutter.publish.yml +++ b/.github/workflows/flutter.publish.yml @@ -9,6 +9,10 @@ on: url: description: 'Set the Playstore URL of the app' type: string + ruby_version: + description: 'The Ruby version used for Fastlane (ex: 3.4.10)' + required: true + type: string jobs: play_store: environment: @@ -34,7 +38,7 @@ jobs: - name: 'Setup Ruby' uses: ruby/setup-ruby@v1.312.0 with: - ruby-version: '3.4.10' + ruby-version: ${{ inputs.ruby_version }} bundler-cache: true env: BUNDLE_GEMFILE: 'android/Gemfile'