We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa7a351 commit 56364f4Copy full SHA for 56364f4
1 file changed
.github/workflows/publish.yml
@@ -24,7 +24,15 @@ jobs:
24
- name: Run cargo test
25
run: cargo test
26
27
- - uses: katyo/publish-crates@v1
28
- with:
29
- registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
30
- args: --no-verify
+ - name: Publish cumulo-dipa-derive
+ run: cargo publish -p cumulo-dipa-derive --no-verify
+ env:
+ 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
38
0 commit comments