forked from terpnetwork/terp-core
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (33 loc) · 1.07 KB
/
proto-buf-publisher.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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/[email protected]
- 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/terpnetwork/terp-core.git#branch=master'
# publish proto files
- uses: bufbuild/buf-push-action@v1
with:
input: 'proto'
buf_token: ${{ secrets.BUF_TOKEN }}