Skip to content

add console log

add console log #3

Workflow file for this run

name: Push to Buf Schema Registry
# This workflow runs when a new version tag is pushed to the repository.
# It then pushes the Protobuf files corresponding to that tag on to the
# Buf Schema Registry at https://buf.build/evmos/evmos
on:
push:
tags:
- "v*.*.*"
jobs:
push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bufbuild/[email protected]
# Push Evmos protos to the Buf Schema Registry
- uses: bufbuild/[email protected]
with:
input: ./proto
buf_token: ${{ secrets.BUF_TOKEN }}