Skip to content

Commit 21c8f91

Browse files
Upgrade to 8.1.7
1 parent 764d3d3 commit 21c8f91

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

.github/workflows/publish.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,21 @@ name: Publish to pub.dev
33
on:
44
push:
55
tags:
6-
- 'v[0-9]+.[0-9]+.[0-9]+*'
6+
- 'v[0-9]+.[0-9]+.[0-9]+*' # Trigger this action when a version tag is pushed
77

88
jobs:
99
publish:
10-
permissions:
11-
id-token: write # Required for authentication using OIDC
12-
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
13-
# with:
14-
# working-directory: path/to/package/within/repository
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
14+
- name: Setup Dart environment
15+
uses: dart-lang/setup-dart@v1
16+
17+
# If the package is not in the root, include a step to navigate to the package directory
18+
# - name: Change to package directory
19+
# run: cd path/to/your/package
20+
21+
- name: Publish to pub.dev
22+
run: dart pub publish --force
23+
# This will fail without an access token for authentication unless you have a custom setup.

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [8.1.7]
2+
- Automated publishing to pub.dev.
3+
14
## [8.1.6]
25
- Fix compatibility with `integration_test` by downgrade the minimum version of platform package to 3.1.0
36

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_quill
22
description: A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter.
3-
version: 8.1.6
3+
version: 8.1.7
44
homepage: https://1o24bbs.com/c/bulletjournal/108
55
repository: https://github.com/singerdmx/flutter-quill
66

0 commit comments

Comments
 (0)