We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d8c0c2 commit f139338Copy full SHA for f139338
.github/workflows/release.yml
@@ -21,8 +21,11 @@ jobs:
21
cache: sbt
22
gpg-private-key: ${{ secrets.AUTOMATED_MAVEN_RELEASE_PGP_SECRET }}
23
gpg-passphrase: PGP_PASSPHRASE
24
- - run: git config user.email "automated.maven.release.noreply@theguardian.com"
25
- - run: git config user.name "Guardian Automated Maven Release"
+ - name: Configure git
+ run: |
26
+ git config user.email "automated.maven.release.admins@theguardian.com"
27
+ git config user.name "Guardian Automated Maven Release"
28
+ git config commit.gpgsign true
29
- name: Publish the release
30
run: sbt "release with-defaults"
31
- name: Create Github Release
0 commit comments