bump version to 0.5.3 #36
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
# This workflows will upload a Crate using cargo when a release is created | |
name: Upload Cargo Crate | |
on: | |
push: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build and publish | |
env: | |
CARGO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }} | |
run: | | |
cd rust_client && cargo publish --token "${CARGO_TOKEN}" | |
cd - | |
cd server && cargo publish --token "${CARGO_TOKEN}" | |