We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b489ad commit cd51beeCopy full SHA for cd51bee
.github/workflows/cd.yml
@@ -18,7 +18,8 @@ jobs:
18
- name: Update version from tag
19
run: |
20
VERSION=${GITHUB_REF#refs/tags/v}
21
- sed -i "s/^version = .*/version = \"$VERSION\"/" Cargo.toml
+ echo $VERSION
22
+ sed -i 's/^version = .*/version = "'$VERSION'"/' Cargo.toml
23
24
- name: Publish to crates.io
25
run: cargo publish --token ${{ secrets.CARGO_TOKEN }}
0 commit comments