xc-admin-v0.5.0 #61
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 Pyth SDK for Cosmwasm to crates.io | |
on: | |
release: | |
types: | |
- created | |
jobs: | |
publish-pyth-sdk-cw: | |
name: Publish Pyth SDK CW | |
if: ${{ startsWith(github.ref, 'refs/tags/pyth-sdk-cw-v') }} | |
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: "target_chains/cosmwasm/sdk/rust" |