Add express relay rust client (#280) #4
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 Express Relay Client to crates.io | |
on: | |
push: | |
tags: | |
- rust-express-relay-client-v* | |
jobs: | |
publish-express-relay-client: | |
name: Publish Express Relay Client | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Publish Express Relay Client | |
run: cargo publish -p express-relay-client --token ${CARGO_REGISTRY_TOKEN} | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.PYTH_NETWORK_PYTH_OPS_CARGO_PUSH }} |