Skip to content
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
6 changes: 6 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ jobs:
steps:
- uses: actions/checkout@v4

# Configures the pub.dev OIDC credential from the workflow's id-token.
# Without this step `flutter pub publish` falls back to interactive
# OAuth and hangs in CI.
- uses: dart-lang/setup-dart@v1

# Flutter is needed to resolve the plugin's `sdk: flutter` dependency.
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.3

* Fix automated publishing (configure pub.dev OIDC credential in CI).

## 0.0.2

* Add MIT license.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rees46_sdk
description: "Flutter plugin wrapping the REES46 native personalization SDKs for Android and iOS."
version: 0.0.2
version: 0.0.3
homepage: https://github.com/rees46/flutter-sdk
repository: https://github.com/rees46/flutter-sdk
issue_tracker: https://github.com/rees46/flutter-sdk/issues
Expand Down
Loading