From ef06c5dcb6616728697989c722892ca4765662c0 Mon Sep 17 00:00:00 2001 From: Alex Li Date: Fri, 22 Sep 2023 16:11:49 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Fix=20publish?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pub_publish.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pub_publish.yml b/.github/workflows/pub_publish.yml index bc17f78..3165ba9 100644 --- a/.github/workflows/pub_publish.yml +++ b/.github/workflows/pub_publish.yml @@ -1,4 +1,4 @@ -name: Pub Publish plugin +name: Publish on: release: @@ -7,16 +7,15 @@ on: jobs: publish: - runs-on: ubuntu-latest - steps: - name: Checkout uses: actions/checkout@v1 - name: Publish - uses: sakebook/actions-flutter-pub-publisher@v1.3.0 + uses: k-paxian/dart-package-publisher@master with: - credential: ${{ secrets.CREDENTIAL_JSON }} - flutter_package: true - skip_test: true + credentialJson: ${{ secrets.CREDENTIAL_JSON }} + flutter: true dry_run: false + skipTests: true + force: true