Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ jobs:
channel: ${{ vars.FLUTTER_CHANNEL }}
version: ${{ vars.FLUTTER_VERSION }}

- name: 💎 Configurar Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ vars.RUBY_VERSION }}
bundler-cache: true

- name: 🗳️ Instalar firebase-tools
run: npm install -g firebase-tools

Expand All @@ -62,6 +68,9 @@ jobs:
- name: 🔥 Instalar FlutterFire
run: dart pub global activate flutterfire_cli

- name: 🪎 Configura bundle
run: bundle install

- name: 🔐 Configura credenciales de firebase
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion android/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ platform :android do
upload_to_play_store(
track: ENV["ANDROID_TRACK"] || "internal",
aab: File.expand_path(aab_path),
release_status: "draft",
release_status: "completed",
skip_upload_apk: true,
skip_upload_metadata: true,
skip_upload_changelogs: true,
Expand Down
Loading
Loading