Skip to content

Commit caa6e50

Browse files
committed
Add missing env variables in release action
1 parent db87284 commit caa6e50

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
with:
3232
java-version: '21'
3333
distribution: 'adopt'
34+
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
35+
gpg-passphrase: MAVEN_GPG_PASSPHRASE
3436

3537
- name: Configure git
3638
run: |
@@ -40,6 +42,7 @@ jobs:
4042
- name: Prepare Release
4143
env:
4244
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45+
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
4346
run: |
4447
MVN_ARGS=""
4548
if [ -n "${{ github.event.inputs.releaseVersion }}" ]; then

0 commit comments

Comments
 (0)