Skip to content

Commit

Permalink
tryfix #50
Browse files Browse the repository at this point in the history
  • Loading branch information
yvasyliev committed Oct 13, 2023
1 parent 63835f4 commit f70d600
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,20 @@ jobs:
steps:
- name: Install gpg secret key
run: |
cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | gpg --batch --import
cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY_V2 }}") | gpg --batch --import
gpg --list-secret-keys --keyid-format LONG
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'adopt'
distribution: 'temurin'
cache: maven
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml
server-username: MAVEN_USERNAME # env variable for username in deploy
server-password: MAVEN_PASSWORD # env variable for token in deploy
gpg-private-key: ${{ secrets.OSSRH_GPG_SECRET_KEY }} # Value of the GPG private key to import
gpg-private-key: ${{ secrets.OSSRH_GPG_SECRET_KEY_V2 }} # Value of the GPG private key to import
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
- name: Publish to Central Repository
env:
Expand Down

0 comments on commit f70d600

Please sign in to comment.