Skip to content

Remove version check (#851) #7

Remove version check (#851)

Remove version check (#851) #7

Workflow file for this run

name: Create Release
on:
push:
tags:
- 'v*'
jobs:
create-release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: tests
uses: actions/checkout@v3
- run: cargo install just
working-directory: smart-contracts
- run: cargo check
working-directory: smart-contracts/osmosis
- name: Compile contracts
run: just workspace-optimize
working-directory: smart-contracts/osmosis
- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: "smart-contracts/osmosis/artifacts/*.wasm, smart-contracts/osmosis/artifacts/checksums.txt"
artifactErrorsFailBuild: "true"
generateReleaseNotes: "true"