Skip to content

Commit 9480313

Browse files
Fix tag pattern for publish-sandbox workflow
1 parent 1a7b791 commit 9480313

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish-sandbox.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Publish Sandbox Docker Image
33
on:
44
push:
55
tags:
6-
- 'sandbox-v\d+\.\d+\.\d+*' # Matches sandbox specific semver tags in the format of sandbox-v1.2.3, sandbox-v1.2.3-beta.1, etc.
7-
6+
- 'sandbox-v[0-9]*.[0-9]*.[0-9]*' # Matches sandbox specific semver tags in the format of sandbox-v1.2.3
7+
- 'sandbox-v[0-9]*.[0-9]*.[0-9]*-*' # Matches sandbox specific semver tags in the format of sandbox-v1.2.3-beta
88
env:
99
IMAGE_NAME: ghcr.io/usherlabs/fiet-sandbox/cex-broker
1010

0 commit comments

Comments
 (0)