2.9.0 #56
Workflow file for this run
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: Publish | |
# Triggered manually or on release creation | |
on: | |
release: | |
types: | |
- created | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
publish: | |
name: Publish Flutter SDK | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Publish | |
# Version 1.4.1 will fail because of `Potential leak of Google OAuth Refresh Token detected.` | |
uses: sakebook/[email protected] | |
with: | |
credential: ${{ secrets.PUB_DEV_CREDENTIALS }} | |
flutter_package: true | |
skip_test: true | |
dry_run: false |