Skip to content

Commit

Permalink
allow auto publishing using github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pitabwire committed May 13, 2022
1 parent e54638f commit 7d5d05c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 26 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/dart.yml

This file was deleted.

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 plugin

on:
release:
types: [published]

jobs:
publish:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v1
- name: Publish
uses: sakebook/[email protected]
with:
credential: ${{ secrets.CREDENTIAL_JSON }}
flutter_package: false
skip_test: true
dry_run: true

0 comments on commit 7d5d05c

Please sign in to comment.