Skip to content

Commit 56364f4

Browse files
committed
fix: use cargo publish directly instead of katyo/publish-crates
1 parent aa7a351 commit 56364f4

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,15 @@ jobs:
2424
- name: Run cargo test
2525
run: cargo test
2626

27-
- uses: katyo/publish-crates@v1
28-
with:
29-
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
30-
args: --no-verify
27+
- name: Publish cumulo-dipa-derive
28+
run: cargo publish -p cumulo-dipa-derive --no-verify
29+
env:
30+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
31+
32+
- name: Wait for cumulo-dipa-derive to be available
33+
run: sleep 30
34+
35+
- name: Publish cumulo-dipa
36+
run: cargo publish -p cumulo-dipa --no-verify
37+
env:
38+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 commit comments

Comments
 (0)