This repository was archived by the owner on Oct 18, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +21
-2
lines changed Expand file tree Collapse file tree 4 files changed +21
-2
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 1- ## 1.1.1-dev
1+ ## 1.1.1
22
33* Add a check that throws if a logger name ends with '.'.
44* Require Dart 2.18
Original file line number Diff line number Diff line change @@ -68,3 +68,8 @@ Available logging methods are:
6868+ ` log.fine(logged_content); `
6969+ ` log.finer(logged_content); `
7070+ ` log.finest(logged_content); `
71+
72+ ## Publishing automation
73+
74+ For information about our publishing automation and release process, see
75+ https://github.com/dart-lang/ecosystem/wiki/Publishing-automation .
Original file line number Diff line number Diff line change 11name : logging
2- version : 1.1.1-dev
2+ version : 1.1.1
33
44description : >-
55 Provides APIs for debugging and error logging, similar to loggers in other
You can’t perform that action at this time.
0 commit comments