Chain ID Locked to 9000 and 9001 Removed #1
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: Push to Buf Schema Registry | |
# This workflow runs when changes to proto files are pushed to main | |
# and then pushes these changes on to the Buf Schema Registry at | |
# https://buf.build/evmos/evmos | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
paths: | |
- "proto/**" | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bufbuild/[email protected] | |
# Push Evmos protos to the Buf Schema Registry | |
- uses: bufbuild/[email protected] | |
with: | |
buf_token: ${{ secrets.BUF_TOKEN }} |