Skip to content

Commit

Permalink
Update GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
puneetbehl committed Nov 3, 2023
1 parent c880d5e commit ce145ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/post-release/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ -z "$GIT_USER_EMAIL" ]; then
fi

if [ -z "$GIT_USER_NAME" ]; then
GIT_USER_NAME="micronaut-build"
GIT_USER_NAME="grails-build"
fi

echo -n "Determining release version: "
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/pre-release/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [ -n "$MICRONAUT_BUILD_EMAIL" ]; then
fi

if [ -z "$GIT_USER_NAME" ]; then
GIT_USER_NAME="micronaut-build"
GIT_USER_NAME="grails-build"
fi

echo "Configuring git"
Expand All @@ -33,7 +33,7 @@ cat gradle.properties
echo "Pushing release version and recreating v${release_version} tag"
git add gradle.properties
git add grails-core/src/test/groovy/grails/util/GrailsUtilTests.java
git commit -m "Release v${release_version}"
git commit -m "[skip ci] Release v${release_version}"
git push origin :refs/tags/v${release_version}
git tag -fa v${release_version} -m "Release v${release_version}"
git push origin v${release_version}
Expand Down

0 comments on commit ce145ec

Please sign in to comment.