ci: limit release actions to run on master/main/release branches only
This commit is contained in:
parent
9cec566384
commit
14043d9b50
2 changed files with 8 additions and 0 deletions
4
.github/workflows/release-docker.yaml
vendored
4
.github/workflows/release-docker.yaml
vendored
|
|
@ -4,6 +4,10 @@ on:
|
|||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
branches:
|
||||
- master
|
||||
- main
|
||||
- release
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
|
|
|
|||
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
|
@ -4,6 +4,10 @@ on:
|
|||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
branches:
|
||||
- master
|
||||
- main
|
||||
- release
|
||||
|
||||
jobs:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue