0.7.4 #20
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: Release | |
| on: | |
| release: | |
| types: [created] | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write # Required for OIDC token exchange | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: rust-lang/crates-io-auth-action@v1 | |
| id: auth | |
| - run: sudo apt-get update && sudo apt-get install libssl-dev pkg-config libclang-dev -y | |
| - name: Publish multiaddr | |
| run: cargo publish || true | |
| working-directory: multiaddr | |
| env: | |
| CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }} | |
| - name: Publish secio | |
| run: cargo publish || true | |
| working-directory: secio | |
| env: | |
| CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }} | |
| - name: Publish yamux | |
| run: cargo publish || true | |
| working-directory: yamux | |
| env: | |
| CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }} | |
| - name: Publish tentacle | |
| run: cargo publish || true | |
| working-directory: tentacle | |
| env: | |
| CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }} |