Skip to content

Commit 769dce0

Browse files
committed
ci: remove prefix requirement on actions
1 parent f2a8718 commit 769dce0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/prerelease-nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish Preview Nuget
33
on:
44
push:
55
tags:
6-
- "*-[0-9]*.[0-9]*.[0-9]-*" # Matches semver tags with a suffix, e.g., 1.2.3-preview, 1.2.3-beta1
6+
- "[0-9]*.[0-9]*.[0-9]-*" # Matches semver tags with a suffix, e.g., 1.2.3-preview, 1.2.3-beta1
77
workflow_dispatch:
88
inputs:
99
project:

.github/workflows/release-nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish Stable Nuget
33
on:
44
push:
55
tags:
6-
- "*-[0-9]+.[0-9]+.[0-9]+"
6+
- "[0-9]+.[0-9]+.[0-9]+"
77
branches:
88
- main
99

0 commit comments

Comments
 (0)