Skip to content

Commit

Permalink
Some cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandgeider committed Nov 18, 2023
1 parent eccd9ac commit 249cbf1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 249cbf1

Please sign in to comment.