Analytics beta releae #30
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: | |
workflow_dispatch: | |
# Publish a release version on pub.dev when a new tag (and release) with vX.X.X is created | |
# Always run this on a release_vX.X.X branch | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+*' | |
jobs: | |
publish: | |
name: Publish release to pub.dev | |
permissions: | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repo | |
- uses: actions/checkout@v3 | |
# Setup Dart SDK | |
- uses: dart-lang/setup-dart@v1 | |
# Install Flutter | |
- name: Install and set Flutter version | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.16.0' | |
channel: 'stable' | |
# Get package dependencies and generate files | |
- name: Get package dependencies and generate files | |
run: | | |
flutter pub get | |
flutter pub run build_runner build --delete-conflicting-outputs | |
# Get example app dependencies and generate files | |
- name: Get example app dependencies and generate files | |
working-directory: example | |
run: | | |
flutter pub get | |
flutter pub run build_runner build --delete-conflicting-outputs | |
# Publish | |
- name: Check Publish Warnings | |
run: flutter pub publish --dry-run | |
- name: Publish Package | |
run: flutter pub publish -f | |
- name: Notify Channel | |
uses: slackapi/[email protected] | |
env: | |
SLACK_WEBHOOK_URL: 'https://hooks.slack.com/services/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' | |
SLACK_WEBHOOK_TYPE: 'INCOMING_WEBHOOK' | |
with: | |
payload: |- | |
{ | |
"text":"🚀 Web3Modal Flutter *${{ github.ref_name }}* stable was just published at https://pub.dev/packages/web3modal_flutter" | |
} |