Flutter release #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Flutter release | |
on: | |
# Triggered when a new release is tagged in GitHub. | |
release: | |
types: [ published ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
publishing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v2 | |
- name: '>> Dart package <<' | |
uses: k-paxian/dart-package-publisher@master | |
#uses: sakebook/[email protected] | |
with: | |
#credential: ${{ secrets.FLUTTER_CREDENTIAL_JSON }} | |
#flutter_package: false | |
#skip_test: true | |
flutter: false | |
skipTests: true | |
credentialJson: ${{ secrets.FLUTTER_CREDENTIAL_JSON }} |