This repository has been archived by the owner on Dec 29, 2023. It is now read-only.
fix: use new amm_swap_exact_amount_in api (#45) #4
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 | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Compile with Docker | |
run: | | |
docker run --rm -v "$(pwd)":/code \ | |
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/target \ | |
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \ | |
cosmwasm/rust-optimizer:0.14.0 | |
tar -zcvf cosmwasm-artifacts.tar.gz artifacts | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: cosmwasm-artifacts.tar.gz | |
body_path: CHANGELOG.md |