Skip to content

Commit

Permalink
Improve GPG token handling
Browse files Browse the repository at this point in the history
  • Loading branch information
holly-cummins committed Jun 18, 2024
1 parent fe87d54 commit fc6dece
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Quarkiverse Release

on:
pull_request:
types: [closed]
types: [ closed ]
paths:
- '.github/project.yml'

Expand All @@ -22,14 +22,7 @@ jobs:

- uses: actions/checkout@v4

- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}

- name: Set up JDK 17
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
Expand All @@ -38,6 +31,8 @@ jobs:
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE

- name: Configure Git author
run: |
Expand Down

0 comments on commit fc6dece

Please sign in to comment.