Skip to content

Commit

Permalink
env var syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
zrbrown committed Dec 16, 2023
1 parent ff5b26e commit dc397c0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@ jobs:
servers: |
[{
"id": "github",
"username": "${env.GITHUB_ACTOR}",
"password": "${env.GITHUB_TOKEN}",
"username": "$GITHUB_ACTOR",
"password": "$GITHUB_TOKEN",
"privateKey": "$REPO_SSH_PRIVATE_KEY_LOCATION"
},
{
"id": "ossrh",
"username": "${env.OSSRH_USERNAME}",
"password": "${env.OSSRH_PASSWORD}"
"username": "$OSSRH_USERNAME",
"password": "$OSSRH_PASSWORD"
},
{
"id": "gpg.passphrase",
"username": "none",
"passphrase": "${env.MAVEN_GPG_PASSPHRASE}"
"passphrase": "$MAVEN_GPG_PASSPHRASE"
}]
env:
REPO_SSH_PRIVATE_KEY_LOCATION: ~/.ssh/id_rsa
Expand Down

0 comments on commit dc397c0

Please sign in to comment.