Skip to content

Commit

Permalink
fix crates.io publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBoot committed Apr 13, 2024
1 parent 089080e commit 14b589b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/rust-build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,14 @@ jobs:
with:
tool: cargo-release,markdown-extract

- name: setup git
shell: bash
run: |-
git config user.email "runner@github.com"
git config user.name "Github Runner"
- name: Publish to crates.io
shell: bash
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo release --workspace --execute --no-confirm "${GITHUB_REF_NAME#v}"

0 comments on commit 14b589b

Please sign in to comment.