File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- name : Checkout application code
12
- uses : actions/checkout@v2
12
+ uses : actions/checkout@v4
13
13
14
14
- name : Setup Java
15
- uses : actions/setup-java@v1
15
+ uses : actions/setup-java@v3
16
16
with :
17
17
java-version : 17.x
18
18
22
22
ruby-version : 3
23
23
24
24
- name : Setup Flutter
25
- uses : subosito/flutter-action@v1
25
+ uses : subosito/flutter-action@v2
26
26
with :
27
27
channel : stable
28
28
flutter-version : 3.16.x
@@ -117,8 +117,9 @@ jobs:
117
117
git config user.name Github-Actions
118
118
git config user.email [email protected]
119
119
git checkout -b release-${{ env.VERSION }}
120
- git add .
120
+ git add pubspec.yaml
121
121
git commit -m "Bump version to $( flutter pub run cider version )"
122
122
git tag ${{ env.VERSION }}
123
- git push origin --tags
124
- git push origin --delete ${{ env.VERSION_V }}
123
+ git push ${{ env.VERSION }}
124
+ git push --delete ${{ env.VERSION_V }}
125
+ git push
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
21
21
# - the version number is taken from the git tag vX.Y.Z
22
22
# - the build number is computed by reading the last one from the play store
23
23
# and increasing by one
24
- version : 1.6.2+37
24
+ version : 1.6.3+38
25
25
26
26
environment :
27
27
sdk : ' >=3.0.0 <4.0.0'
You can’t perform that action at this time.
0 commit comments