feat(pyth-lazer) Create schema for lazer agent JRPC endpoint (#2836) #29
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: Publish Rust package pyth-lazer-protocol to crates.io | |
on: | |
push: | |
tags: | |
- rust-pyth-lazer-protocol-v* | |
jobs: | |
publish-pyth-lazer-protocol: | |
name: Publish Rust package pyth-lazer-protocol to crates.io | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- run: cargo publish --token ${CARGO_REGISTRY_TOKEN} | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
working-directory: "lazer/sdk/rust/protocol" |