Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release-build-sign-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ jobs:
run: |
new_tag="v${{ steps.bump-version.outputs.version-build }}"
echo "new version is $new_tag"
git config user.name "GitHub Actions"
git config user.email "github-actions@users.noreply.github.com"
git config user.name "cf-cli-eng"
git config user.email "cf-cli-eng@pivotal.io"
git tag -am "Bump cli version ${new_tag}" ${new_tag}
git push origin $new_tag

Expand Down Expand Up @@ -1075,8 +1075,8 @@ jobs:
git add claw-variables.yml

if ! [ -z "$(git status --porcelain)"]; then
git config user.name github-actions
git config user.email github-actions@github.com
git config user.name cf-cli-eng
git config user.email cf-cli-eng@pivotal.io
git commit -m "Add CF CLI ${VERSION_BUILD}"
else
echo "no new version to commit"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-update-repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ jobs:
git add cf-cli@${VERSION_MAJOR}.rb

if ! [ -z "$(git status --porcelain)"]; then
git config user.name github-actions
git config user.email github-actions@github.com
git config user.name cf-cli-eng
git config user.email cf-cli-eng@pivotal.io
git commit -m "Release CF CLI ${VERSION_BUILD}"
else
echo "no new version to commit"
Expand Down
Loading