From b217663656a887ae61fb56a560b23ab4934c39ed Mon Sep 17 00:00:00 2001 From: Kingkor Roy Tirtho Date: Mon, 6 May 2024 22:44:05 +0600 Subject: [PATCH] cd: run flutter pub get --- .github/workflows/spotube-release-binary.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/spotube-release-binary.yml b/.github/workflows/spotube-release-binary.yml index a17b6132..c8594faf 100644 --- a/.github/workflows/spotube-release-binary.yml +++ b/.github/workflows/spotube-release-binary.yml @@ -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'}}