[cosmwasm] Use ParsedVaa from wormhole contract #21
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: Release Pyth Cosmwasm Contract | |
on: pull_request | |
jobs: | |
release-contract: | |
name: Build and Release cosmwasm contract | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: target_chains/cosmwasm/deploy-scripts | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup tool | |
run: npm ci | |
- name: Build generic cosmwasm contract | |
run: | | |
npm run build-contract -- --cosmwasm | |
mv ../artifacts ../cosmwasm | |
zip -r cosmwasm.zip ../cosmwasm | |
- name: Build injective cosmwasm contract | |
run: | | |
npm run build-contract -- --injective | |
mv ../artifacts ../injective | |
zip -r injective.zip ../injective | |
- name: Build osmosis cosmwasm contract | |
run: | | |
npm run build-contract -- --osmosis | |
mv ../artifacts ../osmosis | |
zip -r osmosis.zip ../osmosis | |
- name: Set env | |
run: | | |
PREFIX="refs/tags/pyth-cosmwasm-contract-" | |
echo "VERSION=${GITHUB_REF:${#PREFIX}}" >> $GITHUB_ENV | |
# - name: Release | |
# uses: softprops/action-gh-release@v1 | |
# with: | |
# files: | | |
# target_chains/cosmwasm/tools/cosmwasm.zip | |
# target_chains/cosmwasm/tools/injective.zip | |
# target_chains/cosmwasm/tools/osmosis.zip | |
# body: | | |
# Contracts | |
# - cosmwasm.zip contains the generic cosmwasm contract for most Cosmos SDK chains. | |
# - injective.zip contains injective specific contract. | |
# - osmosis.zip contains osmosis specific contract. | |
# draft: false | |
# # Setting VERSION in set env step and hence it will be available | |
# name: Pyth Cosmwasm Contract ${{ env.VERSION }} | |
# tag_name: ${{ github.ref_name }} |