We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dad3b1 commit 2f9a760Copy full SHA for 2f9a760
1 file changed
.github/workflows/release_central.yml
@@ -29,6 +29,8 @@ env:
29
VERSION: ${{ inputs.version }}
30
PREV_VERSION: ${{ inputs.prev_version }}
31
DRY_RUN: ${{ inputs.dry_run }}
32
+ GIT_USER: 'Laura Trotta'
33
+ GIT_MAIL: laura.trotta@elastic.co
34
35
jobs:
36
validate-version:
@@ -86,6 +88,8 @@ jobs:
86
88
87
89
- run: |
90
cd elasticsearch-java
91
+ git config user.name "$GIT_USER"
92
+ git config user.email "$GIT_MAIL"
93
git tag v${{ inputs.version }}
94
git push origin v${{ inputs.version }}
95
echo ${{ inputs.version }} > config/version.txt
0 commit comments