Skip to content

Commit bbaac48

Browse files
committed
list secret keys in long form
1 parent 41129fd commit bbaac48

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/default.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,14 +328,18 @@ jobs:
328328
git tag -f $TAG_NAME
329329
git push origin -f --tags
330330
331-
- name: List available secret keys
332-
id: list-secret-keys
333-
run: gpg --list-secret-keys
331+
- name: gpg version
332+
id: show-gpg-version
333+
run: gpg --version
334334

335335
- name: Install GPG Secret Key
336336
id: install-secret-key
337337
run: cat <(echo -e "${{ secrets.SIGNING_KEY }}") | gpg --batch --import
338338

339+
- name: List available secret keys
340+
id: list-secret-keys
341+
run: gpg --list-secret-keys --keyid-format LONG
342+
339343
- name: Deploy to Maven Central
340344
run: mvn -B deploy -Pci,-ci-sdk,-ci-jira-applink,-ci-ktor -DskipTests "-Djira.service.management.license=${{ secrets.JIRA_SERVICE_MANAGEMENT_LICENSE }}" "-Dconfluence.license=${{ secrets.CONFLUENCE_LICENSE }}"
341345
env:

0 commit comments

Comments
 (0)