Skip to content

Commit 40b8a52

Browse files
committed
ci: fix workflows
1 parent 91c4ad3 commit 40b8a52

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
tags:
55
- 'v[0-9]+.[0-9]+.[0-9]+-pre.[0-9]+'
6-
- '!v[0-9]+.[0-9]+.[0-9]+$'
6+
- '!v[0-9]+.[0-9]+.[0-9]+'
77
jobs:
88
release:
99
runs-on: ubuntu-latest

.github/workflows/publish-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Generate new release
22
on:
33
push:
44
tags:
5-
- 'v[0-9]+.[0-9]+.[0-9]+$'
5+
- 'v[0-9]+.[0-9]+.[0-9]+'
6+
- '!v[0-9]+.[0-9]+.[0-9]+-pre.[0-9]+'
67
jobs:
78
release:
89
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)