mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-12-08 00:17:29 +00:00
cd: run flutter pub get
This commit is contained in:
parent
df21468c03
commit
b217663656
17
.github/workflows/spotube-release-binary.yml
vendored
17
.github/workflows/spotube-release-binary.yml
vendored
@ -2,11 +2,6 @@ name: Spotube Release Binary
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
debug:
|
||||
type: boolean
|
||||
default: false
|
||||
description: Debug with SSH toggle
|
||||
required: false
|
||||
channel:
|
||||
type: choice
|
||||
options:
|
||||
@ -14,6 +9,11 @@ on:
|
||||
- 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
|
||||
@ -22,6 +22,9 @@ on:
|
||||
env:
|
||||
FLUTTER_VERSION: 3.19.5
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
build_platform:
|
||||
strategy:
|
||||
@ -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'}}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user