Skip to content

Commit 691b3de

Browse files
committed
fix: allow dirty publish for frontend dist
1 parent 7a05bd5 commit 691b3de

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ jobs:
6161

6262
- name: Dry run publish
6363
if: github.event_name == 'workflow_dispatch' && github.event.inputs.dry_run == 'true'
64-
run: cargo publish --dry-run -p tracing-web-console
64+
run: cargo publish --dry-run -p tracing-web-console --allow-dirty
6565

6666
- name: Publish to crates.io
6767
if: (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')) || (github.event_name == 'workflow_dispatch' && github.event.inputs.dry_run == 'false')
6868
env:
6969
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
70-
run: cargo publish -p tracing-web-console
70+
run: cargo publish -p tracing-web-console --allow-dirty

0 commit comments

Comments
 (0)