From 9df2304232b0c22fe2877448a54366bdbb617592 Mon Sep 17 00:00:00 2001 From: BirjuVachhani Date: Fri, 16 Apr 2021 19:06:49 +0530 Subject: [PATCH] :green_heart: dry run before publishing --- .github/workflows/publish.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index c9904db..47eedcc 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -17,10 +17,12 @@ jobs: run: flutter packages get - name: Format code run: dart format --fix . + - name: Dry Run + run: flutter pub publish --dry-run - name: Publish uses: sakebook/actions-flutter-pub-publisher@v1.3.1 with: credential: ${{ secrets.CREDENTIAL_JSON }} flutter_package: true skip_test: true - dry_run: true \ No newline at end of file + dry_run: false \ No newline at end of file