Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Commit 2ac30e7

Browse files
Fix: action globs
1 parent c32b6fd commit 2ac30e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish-development-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
workflow_dispatch:
44
push:
55
tags:
6-
- '[0-9]+.[0-9]+.[0-9]+.[0-9]+.-*'
6+
- '*.*.*.*-*'
77
branches: [master]
88

99
jobs:

.github/workflows/publish-release-on-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Release and publish on tag
22
on:
33
workflow_dispatch:
44
push:
5-
tags:
6-
- '[0-9]+.[0-9]+.[0-9]+.[0-9]+'
5+
tags-ignore:
6+
- '*.*.*.*-*'
77
branches: [master]
88

99
jobs:

0 commit comments

Comments
 (0)