Skip to content

Commit 3fc7454

Browse files
committed
build(ci): Add tag trigger for snapshot releases
- Allow to make snapshot releases from any branch via tag
1 parent e479824 commit 3fc7454

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/snapshot.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ on:
44
push:
55
branches:
66
- master
7+
tags:
8+
- '[0-9]+.[0-9]+.[0-9]+\-dev.\d+'
79

810
jobs:
911
publish-snapshot:
1012
runs-on: ubuntu-latest
11-
if: "!startsWith(github.event.head_commit.message, 'Release')"
1213
steps:
1314
- name: Checkout code
1415
uses: actions/checkout@v5

0 commit comments

Comments
 (0)