This repository was archived by the owner on Sep 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +18
-24
lines changed
Expand file tree Collapse file tree 3 files changed +18
-24
lines changed Original file line number Diff line number Diff line change @@ -19,15 +19,13 @@ jobs:
1919 uses : actions/checkout@v2
2020 # TODO Verify the crate version matches the tag
2121 - name : Verify publish crate
22- uses : katyo/publish-crates@v1
23- with :
24- path : ${{ env.CRATE_DIR }}
25- dry-run : true
22+ run : cargo publish --dry-run
23+ working-directory : ${{ env.CRATE_DIR }}
2624 - name : Publish crate
27- uses : katyo/ publish-crates@v1
28- with :
29- path : ${{ env.CRATE_DIR }}
30- registry-token : ${{ secrets.CARGO_REGISTRY_TOKEN }}
25+ run : cargo publish
26+ working-directory : ${{ env.CRATE_DIR }}
27+ env :
28+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
3129 create-release :
3230 needs : publish-crate
3331 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -19,15 +19,13 @@ jobs:
1919 uses : actions/checkout@v2
2020 # TODO Verify the crate version matches the tag
2121 - name : Verify publish crate
22- uses : katyo/publish-crates@v1
23- with :
24- path : ${{ env.CRATE_DIR }}
25- dry-run : true
22+ run : cargo publish --dry-run
23+ working-directory : ${{ env.CRATE_DIR }}
2624 - name : Publish crate
27- uses : katyo/ publish-crates@v1
28- with :
29- path : ${{ env.CRATE_DIR }}
30- registry-token : ${{ secrets.CARGO_REGISTRY_TOKEN }}
25+ run : cargo publish
26+ working-directory : ${{ env.CRATE_DIR }}
27+ env :
28+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
3129 create-release :
3230 needs : publish-crate
3331 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -19,15 +19,13 @@ jobs:
1919 uses : actions/checkout@v2
2020 # TODO Verify the crate version matches the tag
2121 - name : Verify publish crate
22- uses : katyo/publish-crates@v1
23- with :
24- path : ${{ env.CRATE_DIR }}
25- dry-run : true
22+ run : cargo publish --dry-run
23+ working-directory : ${{ env.CRATE_DIR }}
2624 - name : Publish crate
27- uses : katyo/ publish-crates@v1
28- with :
29- path : ${{ env.CRATE_DIR }}
30- registry-token : ${{ secrets.CARGO_REGISTRY_TOKEN }}
25+ run : cargo publish
26+ working-directory : ${{ env.CRATE_DIR }}
27+ env :
28+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
3129 publish-npm :
3230 needs : publish-crate
3331 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments