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 9c3d925 commit dbeb106Copy full SHA for dbeb106
.github/workflows/publish.yml
@@ -23,11 +23,11 @@ jobs:
23
toolchain: stable
24
25
- name: Dry run workspace publish
26
- if: ${{ !startsWith(github.ref, 'refs/tags/') }}
27
- run: cargo publish --workspace --dry-run --no-verify
+ if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
+ run: cargo publish --workspace --dry-run
28
29
- name: Publish workspace
30
- if: ${{ startsWith(github.ref, 'refs/tags/') }}
+ if: ${{ startsWith(github.ref, 'refs/tags/v') }}
31
env:
32
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
33
run: cargo publish --workspace
0 commit comments