-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,8 +54,8 @@ jobs: | |
|
||
- name: Create release branch and switch to it | ||
run: | | ||
git config user.name "Timefold Release Bot" | ||
git config user.email "[email protected]" | ||
git config --global user.name "Timefold Release Bot" | ||
git config --global user.email "[email protected]" | ||
git checkout -b $RELEASE_BRANCH_NAME | ||
- uses: actions/setup-java@v4 | ||
|
@@ -92,6 +92,8 @@ jobs: | |
cp docs/target/antora-template.yml docs/src/antora.yml | ||
git add docs/src/antora.yml | ||
find . -name 'pom.xml' | xargs git add | ||
git config --global user.name "Timefold Release Bot" | ||
git config --global user.email "[email protected]" | ||
git commit -m "build: release version ${{ github.event.inputs.version }}" | ||
git push origin $RELEASE_BRANCH_NAME | ||
|