Skip to content

Commit

Permalink
Add the publish action (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nayuta403 authored Mar 31, 2022
1 parent baf758d commit b900036
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish

on:
release:
types: [published]
workflow_dispatch:

jobs:
publish:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v1
- name: Publish
uses: sakebook/actions-flutter-pub-publisher@v1.3.0
with:
credential: ${{ secrets.CREDENTIALS }}
flutter_package: true
skip_test: true
dry_run: false

0 comments on commit b900036

Please sign in to comment.