Merge pull request #31 from natintosh/nat/ios-fix #4
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 to pub.dev | |
on: | |
push: | |
tags: | |
- 'libphonenumber_plugin-v[0-9]+.[0-9]+.[0-9]+*' | |
# Publish using the reusable workflow from dart-lang. | |
jobs: | |
publish: | |
permissions: | |
id-token: write # This is required for authentication using OIDC | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Flutter SDK | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- name: Install dependencies | |
run: flutter pub get | |
working-directory: libphonenumber_plugin/ | |
- name: Setup dart | |
uses: dart-lang/setup-dart@v1 | |
- name: Publish | |
run: dart pub publish -f | |
working-directory: libphonenumber_plugin/ |