Skip to content

Commit

Permalink
auto release - fix gpg key import
Browse files Browse the repository at this point in the history
  • Loading branch information
johnaohara committed Jun 23, 2024
1 parent a03af4f commit 7db77b2
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ jobs:
- name: Import GPG signing key
uses: crazy-max/ghaction-import-gpg@v5
with:
gpg_private_key: ${{ secrets.MAVEN_SIGNING_KEY }}
passphrase: ${{ secrets.MAVEN_SIGNING_KEY_PASSPHRASE }}
gpg_private_key: ${{ secrets.GPG_SIGNING_KEY }}
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
Expand All @@ -35,11 +34,6 @@ jobs:
run: mvn --version
- name: Authenticate with Quay.io
run: echo "${{ secrets.QUAY_IO_PASSWORD }}" | docker login quay.io -u "${{ secrets.QUAY_IO_USERNAME }}" --password-stdin
- name: Configure GPG Key
run: |
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import
env:
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
- name: Publish base image
run: |
docker build -f ./horreum-backend/src/main/docker/Dockerfile.jvm.base -t quay.io/hyperfoil/horreum-base:latest ./horreum-backend/
Expand Down

0 comments on commit 7db77b2

Please sign in to comment.