We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c212bc commit 44200b7Copy full SHA for 44200b7
.github/workflows/release.yml
@@ -54,8 +54,8 @@ jobs:
54
./gradlew snapshotVersion -Pversion="${NEXT_VERSION}"
55
- name: Push next version snapshot
56
run: |
57
- git config --global user.name 'Github Action'
58
- git config --global user.email '[email protected]'
+ git config user.name "$GIT_USER_NAME"
+ git config user.email "$GIT_USER_EMAIL"
59
git commit -am "Bumped snapshot version"
60
git push
61
- name: Export Gradle Properties
@@ -70,8 +70,8 @@ jobs:
70
BRANCH: gh-pages
71
FOLDER: build/docs
72
DOC_FOLDER: latest
73
- COMMIT_EMAIL: [email protected]
74
- COMMIT_NAME: Søren Berg Glasius
+ COMMIT_EMAIL: ${{ secrets.GIT_USER_EMAIL }}
+ COMMIT_NAME: ${{ secrets.GIT_USER_NAME }}
75
VERSION: ${{ steps.get_version.outputs.version-without-v }}
76
- name: Run post-release
77
if: success()
0 commit comments