Merge pull request #1385 from erknvl/macros/bump-connectivity #280
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: Release (flutter) | |
on: | |
release: | |
types: [created] | |
tags: | |
- graphql_flutter-v* | |
push: | |
workflow_run: | |
workflows: | |
- "Build" | |
- "Test" | |
branches: [ main ] | |
types: | |
- completed | |
jobs: | |
publishing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v2 # required! | |
- name: 'publish graphql-flutter to to Pub.dev' | |
uses: k-paxian/dart-package-publisher@master | |
with: | |
credentialJson: ${{ secrets.CREDENTIAL_JSON }} | |
flutter: true | |
skipTests: true | |
dryRunOnly: ${{ github.event_name != 'release' }} | |
relativePath: './packages/graphql_flutter/' |