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 d6194dc commit 61aa6eeCopy full SHA for 61aa6ee
.github/workflows/publishgh.yml
@@ -10,6 +10,11 @@ jobs:
10
packages: write
11
steps:
12
- uses: actions/checkout@v3
13
+ - id: install-secret-key
14
+ name: Install gpg secret key
15
+ run: |
16
+ cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | gpg --batch --import
17
+ gpg --list-secret-keys --keyid-format LONG
18
- name: Set up Java
19
uses: actions/setup-java@v3
20
with:
@@ -20,4 +25,4 @@ jobs:
25
- name: Publish to the Maven Central Repository
21
26
run: gradle publish
22
27
env:
23
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments