Skip to content

Commit

Permalink
ci: fix swapped env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
cleydyr committed Dec 29, 2024
1 parent 499f7a6 commit d6af5c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:

- name: Deploy to Maven Central
env:
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PRIVATE_KEY }}
MAVEN_GPG_KEY: ${{ secrets.GPG_PASSPHRASE }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
MAVEN_GPG_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
if: success()
run: MAVEN_GPG_PASSPHRASE=$MAVEN_GPG_PASSPHRASE MAVEN_GPG_KEY=${MAVEN_GPG_KEY} mvn deploy -DskipTests

Expand Down

0 comments on commit d6af5c0

Please # to comment.