From 5e27c8948ffa8210589cda7a0994370049a4f523 Mon Sep 17 00:00:00 2001 From: Guillermo Bescos Date: Wed, 24 Jan 2024 15:41:39 +0000 Subject: [PATCH] Fix --- .../release-pyth-cosmwasm-contract.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/release-pyth-cosmwasm-contract.yml b/.github/workflows/release-pyth-cosmwasm-contract.yml index 4d90336ea7..1422baa4b3 100644 --- a/.github/workflows/release-pyth-cosmwasm-contract.yml +++ b/.github/workflows/release-pyth-cosmwasm-contract.yml @@ -35,3 +35,20 @@ jobs: 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 }}