srt-rs is publishing its crates #15
Workflow file for this run
This file contains 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-crates | |
run-name: srt-rs is publishing its crates | |
on: | |
release: | |
types: [ published ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
publish-c: | |
name: Publish srt-c | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Publish srt-protocol to crates.io | |
run: cargo publish --manifest-path ./srt-c/Cargo.toml --token ${CRATES_TOKEN} | |
env: | |
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }} | |
needs: [ publish-tokio ] | |
publish-protocol: | |
name: Publish srt-protocol | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Publish srt-protocol to crates.io | |
run: cargo publish --manifest-path ./srt-protocol/Cargo.toml --token ${CRATES_TOKEN} | |
env: | |
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }} | |
publish-tokio: | |
name: Publish srt-tokio | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Publish srt-tokio to crates.io | |
run: cargo publish --manifest-path ./srt-tokio/Cargo.toml --token ${CRATES_TOKEN} | |
env: | |
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }} | |
needs: [ publish-protocol ] | |
publish-transmit: | |
name: Publish srt-transmit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Publish srt-transmit to crates.io | |
run: cargo publish --manifest-path ./srt-transmit/Cargo.toml --token ${CRATES_TOKEN} | |
env: | |
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }} | |
needs: [ publish-tokio ] |