Skip to content

Commit a39fb74

Browse files
author
renancaraujo
committed
0.10.0
1 parent 28ab263 commit a39fb74

File tree

5 files changed

+12
-28
lines changed

5 files changed

+12
-28
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,16 @@
11
name: Release
2-
32
on:
4-
push:
5-
tags:
6-
- '*'
3+
release:
4+
types: [published]
75

86
jobs:
9-
build:
7+
changelog:
8+
name: Update changelog
109
runs-on: ubuntu-latest
1110
steps:
12-
- uses: actions/checkout@v1
13-
- uses: actions/setup-java@v1
14-
with:
15-
java-version: '12.x'
16-
- uses: subosito/flutter-action@v1
17-
with:
18-
channel: 'stable'
19-
- run: flutter pub get
20-
- run: flutter test
21-
- run: cd example && flutter create .
22-
- run: flutter build apk --debug --split-per-abi
23-
- uses: montudor/action-zip@v0.1.0
24-
with:
25-
args: zip -qq -r ./apks.zip . -i ./build/app/outputs/apk/debug
26-
- uses: svenstaro/upload-release-action@1.0.1
27-
with:
28-
repo_token: ${{ secrets.token }}
29-
file: ./apks.zip
30-
asset_name: example_app.zip
31-
tag: ${{ github.ref }}
32-
overwrite: true
11+
- uses: actions/checkout@v2
12+
with:
13+
ref: master
14+
- run: ./bin/changelog-from-release
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

bin/changelog-from-release

6.84 MB
Binary file not shown.

bin/changelog-from-release-mac

6.8 MB
Binary file not shown.

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ packages:
122122
path: ".."
123123
relative: true
124124
source: path
125-
version: "0.9.2"
125+
version: "0.10.0"
126126
sky_engine:
127127
dependency: transitive
128128
description: flutter

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: photo_view
22
description: Photo View provides a gesture sensitive zoomable widget. Photo View is largely used to show interacive images and other stuff such as SVG.
3-
version: 0.9.2
3+
version: 0.10.0
44
homepage: https://github.com/renancaraujo/photo_view
55

66
environment:

0 commit comments

Comments
 (0)