Skip to content

Commit

Permalink
Publish protobufs on release tags (#869)
Browse files Browse the repository at this point in the history
* Publish protobufs on release tags

* Fix regex to match also rc versions
  • Loading branch information
pinosu authored May 20, 2022
1 parent d63bea4 commit aadc8bf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/proto-buf-publisher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ name: Proto Buf Publishing - Action
on:
push:
branches:
- master
- 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
Expand Down

0 comments on commit aadc8bf

Please sign in to comment.