v0.7.1 expand python bindings #3
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish to crates.io | |
| on: | |
| release: | |
| types: [published] | |
| workflow_dispatch: | |
| jobs: | |
| publish: | |
| name: Publish crates | |
| runs-on: ubuntu-latest | |
| env: | |
| CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Authenticate to crates.io | |
| run: cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
| - name: Publish threecrate-core | |
| run: cargo publish -p threecrate-core | |
| - name: Wait for indexing | |
| run: sleep 30 | |
| - name: Publish threecrate-algorithms | |
| run: cargo publish -p threecrate-algorithms | |
| - name: Wait for indexing | |
| run: sleep 30 | |
| - name: Publish threecrate-io | |
| run: cargo publish -p threecrate-io | |
| - name: Wait for indexing | |
| run: sleep 30 | |
| - name: Publish threecrate-gpu | |
| run: cargo publish -p threecrate-gpu | |
| - name: Wait for indexing | |
| run: sleep 90 | |
| - name: Publish threecrate-reconstruction | |
| run: cargo publish -p threecrate-reconstruction | |
| - name: Wait for indexing | |
| run: sleep 30 | |
| - name: Publish threecrate-simplification | |
| run: cargo publish -p threecrate-simplification | |
| - name: Wait for indexing | |
| run: sleep 30 | |
| - name: Publish threecrate-visualization | |
| run: cargo publish -p threecrate-visualization | |
| - name: Wait for indexing | |
| run: sleep 30 | |
| - name: Publish threecrate (umbrella) | |
| run: cargo publish --manifest-path threecrate-umbrella/Cargo.toml |