Skip to content

Commit

Permalink
ci: fix release command syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
DanySK committed Jan 17, 2025
1 parent 7625ff4 commit c1da110
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,13 +191,13 @@ jobs:
check-command: true
deploy-command: |
[ -n "${{ needs.staging-repo.outputs.repo-id }}" ] || (
echo "Staging repository ID not found" &&
echo "Staging repository ID not found"
exit 1
)
./gradlew\
${{ needs.ci-preparation.outputs.force-version }}\
-PstagingRepositoryId=${{ needs.staging-repo.outputs.repo-id }}\
uploadOSSRH uploadKotlinMultiplatform uploadJvm uploadJs close --parallel || \
uploadOSSRH uploadKotlinMultiplatform uploadJvm uploadJs close --parallel
clean-command: |
# Clean the build directory on Win and Mac
if [[ "${{ contains('Linux', runner.os) }}" == "false" ]]; then
Expand Down

0 comments on commit c1da110

Please sign in to comment.