Skip to content

Commit

Permalink
another try
Browse files Browse the repository at this point in the history
  • Loading branch information
p3t committed Jun 23, 2024
1 parent d704265 commit d232489
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,12 @@ jobs:
- name: Sign artifacts
if: steps.Build.outcome == 'success'
# if: inputs.release_build
run: ./gradlew -Pversion=${build_version} --debug signMavenJavaPublication
run: |
./gradlew -Pversion=${build_version} \
-PGPG_SIGNING_KEY_PASSWORD=${GPG_SIGNING_KEY_PASSWORD} \
-PGPG_SIGNING_KEY=${GPG_SIGNING_KEY} \
-PGPG_KEY_ID=${GPG_KEY_ID} \
--info signMavenJavaPublication
env:
GPG_SIGNING_KEY_PASSWORD: ${{ secrets.GPG_SIGNING_KEY_PASSWORD }}
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
Expand Down

0 comments on commit d232489

Please sign in to comment.