Skip to content

Commit

Permalink
fix: publish to github and dokka after maven (#356)
Browse files Browse the repository at this point in the history
Only publish the github release and dokka documentation after maven
publication succeeds. Otherwise if it fails, makes it harder to cleanup
the failed release.
  • Loading branch information
diogomatsubara authored Jan 21, 2025
1 parent 0aa4356 commit ab482d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,14 @@ jobs:

publish-dokka:
name: Publish documentation
needs: tag
needs: [tag, publish-android, publish-jvm]
uses: ./.github/workflows/publish-dokka.yml
with:
live-run: ${{ inputs.live-run || false }}
branch: ${{ needs.tag.outputs.branch }}

publish-github:
needs: tag
needs: [tag, publish-android, publish-jvm]
runs-on: macos-latest
steps:
- uses: eclipse-zenoh/ci/publish-crates-github@main
Expand Down

0 comments on commit ab482d9

Please sign in to comment.