-
-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eccd9ac
commit 249cbf1
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,11 +114,11 @@ jobs: | |
# one without the v and push it. | ||
- name: Commit pubspec version and delete tag | ||
run: | | ||
git config user.name Github-actions | ||
git config user.name Github-Actions | ||
git config user.email [email protected] | ||
git branch release-${{ env.VERSION }} | ||
git checkout -b release-${{ env.VERSION }} | ||
git add . | ||
git commit -m "Bump version to $( flutter pub run cider version )" | ||
git tag ${{ env.VERSION }} | ||
git push origin HEAD:master --tags | ||
git push origin --tags | ||
git push origin --delete ${{ env.VERSION_V }} |