Skip to content

Commit

Permalink
fix sed call in release pipeline
Browse files Browse the repository at this point in the history
related to #345

Signed-off-by: Sebastian Hoß <[email protected]>
  • Loading branch information
sebhoss committed Oct 24, 2024
1 parent cc76136 commit 77220d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable
- name: Cargo Version
if: steps.commits.outputs.count > 0
run: sed -i -e 's/^version = .*/version = "${{ steps.release.outputs.version }}"/' kube-custom-resources-rs/Cargo.toml
run: sed -i -e '0,/edition/s/^version = .*/version = "${{ steps.release.outputs.version }}"/' kube-custom-resources-rs/Cargo.toml
- name: Publish to crates.io
if: steps.commits.outputs.count > 0
run: >
Expand Down

0 comments on commit 77220d1

Please sign in to comment.