1 parent 7a05bd5 commit 691b3deCopy full SHA for 691b3de
1 file changed
.github/workflows/publish.yml
@@ -61,10 +61,10 @@ jobs:
61
62
- name: Dry run publish
63
if: github.event_name == 'workflow_dispatch' && github.event.inputs.dry_run == 'true'
64
- run: cargo publish --dry-run -p tracing-web-console
+ run: cargo publish --dry-run -p tracing-web-console --allow-dirty
65
66
- name: Publish to crates.io
67
if: (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')) || (github.event_name == 'workflow_dispatch' && github.event.inputs.dry_run == 'false')
68
env:
69
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
70
- run: cargo publish -p tracing-web-console
+ run: cargo publish -p tracing-web-console --allow-dirty
0 commit comments