Skip to content

Commit

Permalink
allow warnings during release
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Hoß <[email protected]>
  • Loading branch information
sebhoss committed Nov 4, 2023
1 parent 878d246 commit ee9d1e9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
run: sed -i -e '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: cargo publish --allow-dirty --token ${{ secrets.CRATES_IO_TOKEN }} --package kube-custom-resources-rs --all-features
run: cargo publish --allow-dirty --token ${{ secrets.CRATES_IO_TOKEN }} --package kube-custom-resources-rs --all-features --locked
env:
RUSTFLAGS: "-A warnings"
- id: create_release
name: Create Release
if: steps.commits.outputs.count > 0
Expand Down

0 comments on commit ee9d1e9

Please sign in to comment.