1
0
Fork 0
mirror of synced 2024-08-28 00:12:02 +12:00

Merge pull request #11293 from Budibase/fix-release-and-prerelease-tag-triggers

Fix release and prerelease tag triggers
This commit is contained in:
Rory Powell 2023-07-20 12:09:16 +01:00 committed by GitHub
commit f72a2a1400
2 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ concurrency:
on: on:
push: push:
tags: tags:
- v*-alpha.* - ".*-alpha.*"
workflow_dispatch: workflow_dispatch:
env: env:

View file

@ -6,9 +6,9 @@ concurrency:
on: on:
push: push:
tags: tags:
- "v[0-9]+.[0-9]+.[0-9]+" - "[0-9]+.[0-9]+.[0-9]+"
# Exclude all pre-releases # Exclude all pre-releases
- "!v*[0-9]+.[0-9]+.[0-9]+-*" - "!*[0-9]+.[0-9]+.[0-9]+-*"
env: env:
# Posthog token used by ui at build time # Posthog token used by ui at build time