I have an release
action for deploying new releases by conditions (run only when tag pushed):
name: Release
on:
push:
tags:
- 'v[0-9].[0-9]+.[0-9]+'
# ...
and have some other actions, which runs on push
. For example:
name: Test
on: [push]
# ...
I would like to add condition to Release
action