We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53b1268 commit e4f0487Copy full SHA for e4f0487
.github/workflows/release.yaml
@@ -16,9 +16,6 @@ jobs:
16
uses: actions/checkout@v2
17
with:
18
fetch-depth: 0
19
- run: |
20
- git config user.name "$(git log -1 --format=format:%aN)"
21
- git config user.email "$(git log -1 --format=format:%aE)"
22
23
- name: Set up Go
24
uses: actions/setup-go@v2
@@ -30,4 +27,6 @@ jobs:
30
27
RELEASE_DRY_RUN: "false"
31
28
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32
29
run: |
+ git config user.name "$(git log -1 --format=format:%aN)"
+ git config user.email "$(git log -1 --format=format:%aE)"
33
make release
0 commit comments