File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
1
+ # A CI configuration to auto-publish pub packages.
2
+
3
+ name : Publish
4
+
5
+ on :
6
+ pull_request :
7
+ branches : [ master ]
8
+ push :
9
+ tags : [ 'v[0-9]+.[0-9]+.[0-9]+' ]
10
+
11
+ jobs :
12
+ publish :
13
+ if : ${{ github.repository_owner == 'dart-lang' }}
14
+ uses : dart-lang/ecosystem/.github/workflows/publish.yaml@main
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
+ // ignore_for_file: unreachable_from_main
6
+
5
7
import 'dart:mirrors' show reflectClass;
6
8
7
9
import 'package:gcloud/datastore.dart' as datastore;
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
- // ignore_for_file: only_throw_errors
5
+ // ignore_for_file: only_throw_errors, unreachable_from_main
6
6
7
7
import 'dart:typed_data' ;
8
8
You can’t perform that action at this time.
0 commit comments