We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eccd9ac commit 249cbf1Copy full SHA for 249cbf1
.github/workflows/build-release.yml
@@ -114,11 +114,11 @@ jobs:
114
# one without the v and push it.
115
- name: Commit pubspec version and delete tag
116
run: |
117
- git config user.name Github-actions
+ git config user.name Github-Actions
118
git config user.email [email protected]
119
- git branch release-${{ env.VERSION }}
+ git checkout -b release-${{ env.VERSION }}
120
git add .
121
git commit -m "Bump version to $( flutter pub run cider version )"
122
git tag ${{ env.VERSION }}
123
- git push origin HEAD:master --tags
+ git push origin --tags
124
git push origin --delete ${{ env.VERSION_V }}
0 commit comments