From 3197d489ef3b88e11455f609bcbd84ffa7421609 Mon Sep 17 00:00:00 2001 From: shadracknx <105756058+shadracknx@users.noreply.github.com> Date: Wed, 15 Jun 2022 09:26:45 -0700 Subject: [PATCH] fix flutter plugin release ci. (#132) Live fix the flutter release actions. Seems pub is no longer a global command as it used to be. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f20a16c4..ed8e219b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,7 +73,7 @@ jobs: cp ~/.pub-cache/credentials.json $PUB_CACHE/credentials.json - name: Publish Dart/Flutter package - run: pub publish -f + run: flutter pub publish -f - name: Github Release uses: actions/create-release@v1.0.1