From 249cbf1f5f1882055f72775955e93f60dd3cfe54 Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Sat, 18 Nov 2023 21:34:48 +0100 Subject: [PATCH] Some cleanup --- .github/workflows/build-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 8a735277..ccf33e92 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -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 github-actions@github.com - 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 }} \ No newline at end of file