Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
guibescos committed Jan 24, 2024
1 parent 4abbbd1 commit eeec4d5
Showing 1 changed file with 3 additions and 33 deletions.
36 changes: 3 additions & 33 deletions .github/workflows/release-pyth-cosmwasm-contract.yml
Original file line number Diff line number Diff line change
@@ -1,54 +1,24 @@
name: Release Pyth Cosmwasm Contract

on:
push:
tags:
- pyth-cosmwasm-contract-v*
on: pull_request

jobs:
release-contract:
name: Build and Release cosmwasm contract
runs-on: ubuntu-latest
defaults:
run:
working-directory: target_chains/cosmwasm/tools
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 }}

0 comments on commit eeec4d5

Please sign in to comment.