File tree 4 files changed +20
-37
lines changed
4 files changed +20
-37
lines changed Original file line number Diff line number Diff line change 5
5
tags : ['v*']
6
6
7
7
jobs :
8
- main :
8
+ publish :
9
+ name : Publish on pub.dev
9
10
runs-on : ubuntu-latest
10
11
12
+ permissions :
13
+ id-token : write
14
+ contents : write
15
+
11
16
steps :
12
- - name : Checkout
17
+ - name : Clone repository
13
18
uses : actions/checkout@v3
14
19
15
- # This action adds a token needed for pub.dev
20
+ # This step adds the auth token for pub.dev
16
21
- name : Set up Dart
17
22
uses : dart-lang/setup-dart@v1
18
23
with :
24
29
channel : stable
25
30
cache : true
26
31
27
- - name : Install mobile-tools
28
- uses : actions/checkout@v3
29
- with :
30
- repository : leancodepl/mobile-tools
31
- path : mobile-tools
32
-
33
- - name : Add mobile-tools to PATH
34
- run : |
35
- echo $GITHUB_WORKSPACE/mobile-tools/bin >> $GITHUB_PATH
36
-
37
- - name : Download pub.dev credentials
38
- env :
39
- CREDENTIALS : ${{ secrets.PUB_DEV_CREDENTIALS }}
40
- run : |
41
- mkdir -p ~/.pub-cache
42
- echo $CREDENTIALS > ~/.pub-cache/credentials.json
43
-
44
- - name : Set version data
45
- run : |
46
- tag=${{ github.ref_name }}
47
- echo "RELEASE_NOTES=$(link_changelog flutter_downloader $tag)" >> $GITHUB_ENV
48
- echo "IS_PRERELEASE=$(is_prerelease flutter_downloader $tag)" >> $GITHUB_ENV
49
-
50
- - name : Publish
51
- run : dart pub publish --force
52
-
53
- - name : Create release
54
- uses : softprops/action-gh-release@v1
55
- with :
56
- name : ${{ github.ref_name }}
57
- body : ' [See changelog on pub.dev](${{ env.RELEASE_NOTES }})'
58
- prerelease : ${{ env.IS_PRERELEASE }}
32
+ - name : Publish to pub.dev
33
+ id : pub_release
34
+ uses : leancodepl/mobile-tools/.github/actions/pub-release@pub-release-v1
Original file line number Diff line number Diff line change
1
+ ## 1.10.6
2
+
3
+ - Fix ` delete() ` not working when file isn't saved to public storage (#871 )
4
+ - Update CI workflows on GitHub Actions (#872 )
5
+ - Bump native Android dependencies and Gradle (#873 )
6
+ - Bump minimum Flutter version to 3.10 (#873 )
7
+
1
8
## 1.10.5
2
9
3
10
- Make the project compile when the app not doesn't have dependency on Kotlin
Original file line number Diff line number Diff line change 1
1
buildscript {
2
- ext. kotlin_version = " 1.9.0 "
2
+ ext. kotlin_version = " 1.7.22 "
3
3
repositories {
4
4
google()
5
5
mavenCentral()
Original file line number Diff line number Diff line change 1
1
name : flutter_downloader
2
2
description : Powerful plugin making it easy to download files.
3
- version : 1.10.5
3
+ version : 1.10.6
4
4
repository : https://github.com/fluttercommunity/flutter_downloader
5
5
issue_tracker : https://github.com/fluttercommunity/flutter_downloader/issues
6
6
maintainer : Bartek Pacia (@bartekpacia)
You can’t perform that action at this time.
0 commit comments