Skip to content

Commit

Permalink
cd: run flutter pub get
Browse files Browse the repository at this point in the history
  • Loading branch information
KRTirtho committed May 6, 2024
1 parent df21468 commit b217663
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/spotube-release-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ name: Spotube Release Binary
on:
workflow_dispatch:
inputs:
debug:
type: boolean
default: false
description: Debug with SSH toggle
required: false
channel:
type: choice
options:
- stable
- nightly
default: nightly
description: The release channel
debug:
type: boolean
default: false
description: Debug with SSH toggle
required: false
dry_run:
type: boolean
default: false
Expand All @@ -22,6 +22,9 @@ on:
env:
FLUTTER_VERSION: 3.19.5

permissions:
contents: write

jobs:
build_platform:
strategy:
Expand Down Expand Up @@ -69,7 +72,9 @@ jobs:
check-latest: true

- 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
if: ${{matrix.platform == 'android'}}
Expand Down

0 comments on commit b217663

Please sign in to comment.