We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0002a47 commit b83a119Copy full SHA for b83a119
.github/workflows/release.yml
@@ -26,10 +26,11 @@ jobs:
26
- uses: katyo/publish-crates@v2
27
with:
28
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
29
+ id: publish-crates
30
if: ${{ steps.release.outputs.release_created }}
31
# https://github.com/googleapis/release-please-action?tab=readme-ov-file#creating-majorminor-tags
32
- name: Tag versions
- if: ${{ steps.release.outputs.release_created && fromJSON(steps.publish-crates.outputs.published).* }}
33
+ if: ${{ steps.release.outputs.release_created && steps.publish-crates.outcome == 'success' }}
34
run: |
35
git config user.name github-actions[bot]
36
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
0 commit comments