feat(pair xASTRO): add virtual pair backed by ASTRO staking contract … #58
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 Artifacts | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
release-artifacts: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Artifacts | |
run: | | |
$GITHUB_WORKSPACE/scripts/build_release.sh | |
tar -zcvf cosmwasm-artifacts.tar.gz artifacts | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: cosmwasm-artifacts.tar.gz | |
token: ${{ secrets.GITHUB_TOKEN }} |