-
Notifications
You must be signed in to change notification settings - Fork 61
47 lines (41 loc) · 1.17 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Publish to pub.dev
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
jobs:
publish:
name: Publish to pub.dev
permissions:
id-token: write
runs-on: ubuntu-latest
steps:
# Checkout the repo
- uses: actions/checkout@v3
# Install Flutter
- name: Install and set Flutter version
uses: subosito/flutter-action@v2
with:
flutter-version: '3.19.5'
# Setup Dart SDK
- uses: dart-lang/setup-dart@v1
# Setup Dependencies
- uses: ./.github/actions/dependencies
# Publish
- name: Check Publish Warnings
shell: bash
run: flutter pub publish --dry-run
- name: Publish Package
shell: bash
run: flutter pub publish -f
# Notify
- name: Notify Channel
uses: slackapi/[email protected]
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: 'INCOMING_WEBHOOK'
with:
payload: |-
{
"text":"🚀 WalletConnectFlutterV2 *${{ github.ref_name }}* was just published at https://pub.dev/packages/walletconnect_flutter_v2"
}