Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build Patrol extension on pub publish workflow #1898

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/patrol-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ jobs:
id-token: write
contents: write

strategy:
matrix:
flutter-version: ['3.16.0-0.5.pre']
flutter-channel: ['beta']

steps:
- name: Clone repository
uses: actions/checkout@v4
Expand All @@ -31,7 +36,12 @@ jobs:
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: ${{ matrix.flutter-version }}
channel: ${{ matrix.flutter-channel }}

- name: Build DevTools extension
working-directory: packages/patrol_devtools_extension
run: ./publish_to_patrol_extension

- name: Publish to pub.dev
id: pub_release
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/patrol_finders-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ jobs:
id-token: write
contents: write

strategy:
matrix:
flutter-version: ['3.16.0-0.5.pre']
flutter-channel: ['beta']

steps:
- name: Clone repository
uses: actions/checkout@v4
Expand All @@ -31,7 +36,8 @@ jobs:
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: ${{ matrix.flutter-version }}
channel: ${{ matrix.flutter-channel }}

- name: Publish to pub.dev
id: pub_release
Expand Down
Loading