Skip to content

Commit fe4b6ee

Browse files
committed
Only commit pubspec.yaml
1 parent de59899 commit fe4b6ee

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/build-release.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout application code
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313

1414
- name: Setup Java
15-
uses: actions/setup-java@v1
15+
uses: actions/setup-java@v3
1616
with:
1717
java-version: 17.x
1818

@@ -22,7 +22,7 @@ jobs:
2222
ruby-version: 3
2323

2424
- name: Setup Flutter
25-
uses: subosito/flutter-action@v1
25+
uses: subosito/flutter-action@v2
2626
with:
2727
channel: stable
2828
flutter-version: 3.16.x
@@ -117,8 +117,9 @@ jobs:
117117
git config user.name Github-Actions
118118
git config user.email [email protected]
119119
git checkout -b release-${{ env.VERSION }}
120-
git add .
120+
git add pubspec.yaml
121121
git commit -m "Bump version to $( flutter pub run cider version )"
122122
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

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
2121
# - the version number is taken from the git tag vX.Y.Z
2222
# - the build number is computed by reading the last one from the play store
2323
# and increasing by one
24-
version: 1.6.2+37
24+
version: 1.6.3+38
2525

2626
environment:
2727
sdk: '>=3.0.0 <4.0.0'

0 commit comments

Comments
 (0)