Skip to content

Commit

Permalink
More testing
Browse files Browse the repository at this point in the history
  • Loading branch information
aforward committed Sep 8, 2023
1 parent fb40ca1 commit 262e785
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 @@ -30,17 +30,17 @@ jobs:
steps:
- name: Show OSSRH_USERNAME
run: |
echo "Using OSSRH_USERNAME ${{ secrets.OSSRH_USERNAME }}"
echo "Using OSSRH_USERNAME ${secrets.OSSRH_USERNAME}"
- name: Check if OSSRH_PASSWORD is available
run: |
if [[ -z "${{ secrets.OSSRH_PASSWORD }}" ]]; then
if [[ -z "${secrets.OSSRH_PASSWORD}" ]]; then
echo "OSSRH_PASSWORD is not available!"
else
echo "OSSRH_PASSWORD is available."
fi
- name: Check if MAVEN_GPG_PASSPHRASE is available
run: |
if [[ -z "${{ secrets.MAVEN_GPG_PASSPHRASE }}" ]]; then
if [[ -z "${secrets.MAVEN_GPG_PASSPHRASE}" ]]; then
echo "MAVEN_GPG_PASSPHRASE is not available!"
else
echo "MAVEN_GPG_PASSPHRASE is available."
Expand Down

0 comments on commit 262e785

Please sign in to comment.