Publish to pub.dev #5
This file contains hidden or 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
# .github/workflows/publish.yml | |
name: Publish to pub.dev | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+*' # tag-pattern on pub.dev: 'v{{version}}' | |
workflow_dispatch: | |
jobs: | |
publish: | |
permissions: | |
id-token: write # Required for authentication using OIDC | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
repository: flutter/flutter | |
ref: stable | |
path: flutter | |
- run: sudo apt install -y curl git unzip xz-utils zip libglu1-mesa | |
- run: export PATH=$CWD/flutter/bin:#PATH | |
- run: flutter pub get | |
- run: flutter pub publish -f |