Add CodeInfo rpc query (#1943) #51
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: Proto Buf Publishing - Action | |
# Protobuf runs buf (https://buf.build/) push updated proto files to https://buf.build/cosmwasm/wasmd | |
# This workflow is only run when a .proto file has been changed | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'proto/**' | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+.*" # Push events to matching v*, //i.e. v20.15.10, v0.27.0-rc1 | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: bufbuild/[email protected] | |
# lint checks | |
- uses: bufbuild/buf-lint-action@v1 | |
with: | |
input: 'proto' | |
# TODO: Add this when project is more stable. | |
# backward compatibility breaking checks | |
#- uses: bufbuild/buf-breaking-action@v1 | |
# with: | |
# input: 'proto' | |
# against: 'https://github.com/CosmWasm/wasmd.git#branch=master' | |
# publish proto files | |
- uses: bufbuild/buf-push-action@v1 | |
with: | |
input: 'proto' | |
buf_token: ${{ secrets.BUF_TOKEN }} |