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 9079158 commit b66bfa5Copy full SHA for b66bfa5
.github/workflows/gradle-release.yml
@@ -15,10 +15,20 @@ jobs:
15
java-version: 17
16
- uses: gradle/gradle-build-action@v3
17
18
+ - name: GitHub Actor
19
+ env:
20
+ GITHUB_ACTOR: ${{ github.actor }}
21
+ run: echo "$GITHUB_ACTOR"
22
+
23
+ - name: GitHub Triggering Actor
24
25
+ GITHUB_TRIGGERING_ACTOR: ${{ github.triggering_actor }}
26
+ run: echo "$GITHUB_TRIGGERING_ACTOR"
27
28
- name: Git Config
29
run: |
- git config user.name 'Nya Ξlimu'
- git config user.email '[email protected]'
30
+ git config user.name github-actions[bot]
31
+ git config user.email 41898282+github-actions[bot]@users.noreply.github.com
32
33
- name: Remove -SNAPSHOT from versionName
34
run: ./gradlew removeSnapshot
0 commit comments