Skip to content

Commit

Permalink
fix: add output to GITHUB_ENV (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
diogomatsubara authored Jan 21, 2025
1 parent 9b22938 commit 3f5bfcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
if [[ "${{ inputs.snapshot }}" == "true" ]]; then
echo "PUB_MODE=-PSNAPSHOT" >> $GITHUB_ENV
else
echo "RELEASE=closeAndReleaseSonatypeStagingRepository"
echo "RELEASE=closeAndReleaseSonatypeStagingRepository" >> $GITHUB_ENV
fi
- if: ${{ inputs.maven_publish == true }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-jvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ jobs:
run: |
if [[ "${{ inputs.snapshot }}" == "true" ]]; then
echo "PUB_MODE=-PSNAPSHOT" >> $GITHUB_ENV
else
echo "RELEASE=closeAndReleaseSonatypeStagingRepository"
else
echo "RELEASE=closeAndReleaseSonatypeStagingRepository" >> $GITHUB_ENV
fi
- if: ${{ inputs.maven_publish == true }}
Expand Down

0 comments on commit 3f5bfcd

Please sign in to comment.