We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f60b945 commit c21802dCopy full SHA for c21802d
.github/workflows/publish.yml
@@ -29,8 +29,16 @@ jobs:
29
steps:
30
# Checkout repository
31
- uses: actions/checkout@v4
32
- # Setup Dart SDK with JWT token
+ # Set up the Dart SDK and provision the OIDC token used for publishing.
33
+ # The `dart` command from this step will be shadowed by the one from the
34
+ # Flutter SDK below.
35
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
36
+ # Download flutter SDK - needed for publishing Flutter packages. Can also
37
+ # publish pure Dart packages.
38
+ #
39
+ # The dart binary from a Flutter SDK facilitates publishing both Flutter
40
+ # and pure-dart packages.
41
+ - uses: flutter-actions/setup-flutter@d030cb603380106494f72d65a7e52462f380781f
42
# Minimal package setup and dry run checks.
43
- name: Install dependencies
44
run: dart pub get
0 commit comments