From 02a97795d0d34b9ebfed757a9d3f14ded39b9829 Mon Sep 17 00:00:00 2001 From: "UZU, J" Date: Tue, 25 Aug 2020 18:22:56 +0900 Subject: [PATCH] Create pub-publish.yml --- .github/workflows/pub-publish.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/pub-publish.yml diff --git a/.github/workflows/pub-publish.yml b/.github/workflows/pub-publish.yml new file mode 100644 index 0000000..2c3e594 --- /dev/null +++ b/.github/workflows/pub-publish.yml @@ -0,0 +1,21 @@ +name: Publish plugin + +on: + release: + types: [published] + +jobs: + publish: + + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v1 + - name: Publish + uses: sakebook/actions-flutter-pub-publisher@v1.3.1 + with: + credential: ${{ secrets.CREDENTIAL_JSON }} + flutter_package: false + skip_test: true + dry_run: true