No valid OpenPGP data found

I trying to configure circleCI config file to do build.
I using external Nexus repository and now have this problem:

gpg: directory '/home/circleci/.gnupg' created
gpg: keybox '/home/circleci/.gnupg/pubring.kbx' created
gpg: no valid OpenPGP data found.
gpg: Total number processed: 0

My config file:

version: 2.1

orbs:
  maven: circleci/maven@0.0.12
  circleci-maven-release-orb: sonatype-nexus-community/circleci-maven-release-orb@0.0.16

workflows:
  build_and_test:
    jobs:
      - circleci-maven-release-orb/run-maven-release

I have no idea how to fix it, maybe someone knows what to do?

The error is coming from the sonatype-nexus-community provided ORB and their page can be found here

https://github.com/sonatype-nexus-community/circleci-maven-release-orb

The page on the circleci site that they have provided can be found here

https://circleci.com/developer/orbs/orb/sonatype-nexus-community/circleci-maven-release-orb

In turn then links to another third party ORB that can be found here

http://www.bennybottema.com/2019/02/20/automating-your-github-library-releases-to-maven-central/

After this chain of links you will find that there are some notes regarding the use of GPG keys which are also detailed with in the source code of the sonatype-nexus-community ORB which can be viewed via the second link.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.