bump version number (#234) #5
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: Deploy Releases | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
create-crates-io-release: | |
name: Deploy to crates.io | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: cargo login ${{ env.CRATES_IO_TOKEN }} | |
env: | |
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }} | |
- run: cargo publish --allow-dirty -p plotly_derive | |
- run: sleep 10 | |
- run: cargo publish --allow-dirty -p plotly_kaleido | |
- run: sleep 10 | |
- run: cargo publish --allow-dirty -p plotly | |
create-gh-release: | |
name: Deploy to GH Releases | |
runs-on: ubuntu-latest | |
steps: | |
- uses: softprops/action-gh-release@v1 |