cd: run flutter pub get

This commit is contained in:
Kingkor Roy Tirtho 2024-05-06 22:44:05 +06:00
parent df21468c03
commit b217663656

View File

@ -2,11 +2,6 @@ name: Spotube Release Binary
on: on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
debug:
type: boolean
default: false
description: Debug with SSH toggle
required: false
channel: channel:
type: choice type: choice
options: options:
@ -14,6 +9,11 @@ on:
- nightly - nightly
default: nightly default: nightly
description: The release channel description: The release channel
debug:
type: boolean
default: false
description: Debug with SSH toggle
required: false
dry_run: dry_run:
type: boolean type: boolean
default: false default: false
@ -22,6 +22,9 @@ on:
env: env:
FLUTTER_VERSION: 3.19.5 FLUTTER_VERSION: 3.19.5
permissions:
contents: write
jobs: jobs:
build_platform: build_platform:
strategy: strategy:
@ -69,7 +72,9 @@ jobs:
check-latest: true check-latest: true
- name: Install ${{matrix.platform}} dependencies - name: Install ${{matrix.platform}} dependencies
run: dart cli/cli.dart install-dependencies --platform=${{matrix.platform}} run: |
flutter pub get
dart cli/cli.dart install-dependencies --platform=${{matrix.platform}}
- name: Sign Apk - name: Sign Apk
if: ${{matrix.platform == 'android'}} if: ${{matrix.platform == 'android'}}