File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -210,9 +210,6 @@ jobs:
210210 - name : Publish to crates.io
211211 if : always()
212212 run : |
213- if cargo publish --token ${{ secrets.CARGO_TOKEN }} --allow-dirty 2>&1 | grep -q "crate version .* is already uploaded"; then
214- echo "Version already published, skipping"
215- exit 0
216- fi
213+ cargo publish --token ${{ secrets.CARGO_TOKEN }} --allow-dirty || true
217214 env :
218215 CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_TOKEN }}
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ version = "1.0.0"
44edition = " 2024"
55license = " MIT"
66description = " A batch processing clone of Apache Beam in Rust."
7- license-file = " LICENSE"
87repository = " https://github.com/nhubbard/ironbeam"
98
109[features ]
You can’t perform that action at this time.
0 commit comments