Publish protobufs on release tags (#869)

* Publish protobufs on release tags

* Fix regex to match also rc versions
This commit is contained in:
pinosu
2022-05-20 09:04:21 +02:00
committed by GitHub
parent d63bea442b
commit aadc8bfb17

View File

@@ -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