Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,10 @@ jobs:
echo "New version: $NEW_VERSION"
echo "version=$NEW_VERSION" >> $GITHUB_OUTPUT

# Push BEFORE publishing to crates.io - if push fails, we haven't published yet
# Publishing (crates.io, npm, binaries) is handled by release.yml
# which triggers on the tag push below
- name: Push changes and tag
run: |
git pull --rebase origin master
git push origin master
git push origin "v${{ steps.bump.outputs.version }}"

- name: Publish to crates.io
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish