Skip to content

Commit 3e6e299

Browse files
committed
fix: disable crates.io publishing until ready
- Comment out cargo publish step in release workflow - Prevents accidental publishing without proper setup - Add TODO comment for future activation - Maintains release workflow for testing and validation Publishing can be enabled later when crates.io account and token are configured.
1 parent 6ba0e72 commit 3e6e299

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,6 @@ jobs:
4444
- name: Run tests
4545
run: cargo test --all-features
4646

47-
- name: Publish to crates.io
48-
run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
47+
# TODO: Enable when ready to publish to crates.io
48+
# - name: Publish to crates.io
49+
# run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 commit comments

Comments
 (0)