diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e824da2ca..f6f8935c8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -46,6 +46,4 @@ jobs: exit 1 fi git config --global tag.gpgsign true - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" gh release create "$VERSION" --title "$VERSION" --notes "Release $VERSION" --draft diff --git a/.github/workflows/version.yaml b/.github/workflows/version.yaml index c6b7c5fbd..223f50181 100644 --- a/.github/workflows/version.yaml +++ b/.github/workflows/version.yaml @@ -71,9 +71,7 @@ jobs: echo "New bincapz version: $VERSION" sed -i "s/ID string = \"v[0-9]*\.[0-9]*\.[0-9]*\"/ID string = \"${VERSION}\"/" ${{ env.VERSION_FILE }} - - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + BRANCH="bincapz-version-bump-$VERSION" git checkout -b $BRANCH git add ${{ env.VERSION_FILE }}