mirror of
https://gitea.com/gitea/act
synced 2026-05-01 01:27:48 +02:00
9 lines
209 B
HCL
9 lines
209 B
HCL
workflow "New workflow" {
|
|
on = "push"
|
|
resolves = ["filter-version-before-deploy"]
|
|
}
|
|
|
|
action "filter-version-before-deploy" {
|
|
uses = "actions/bin/filter@master"
|
|
args = "tag z?[0-9]+\\.[0-9]+\\.[0-9]+"
|
|
} |