Skip to content

Commit

Permalink
ci: fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mlmoravek committed Nov 15, 2024
1 parent 91c4ad3 commit 40b8a52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+-pre.[0-9]+'
- '!v[0-9]+.[0-9]+.[0-9]+$'
- '!v[0-9]+.[0-9]+.[0-9]+'
jobs:
release:
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: Generate new release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+$'
- 'v[0-9]+.[0-9]+.[0-9]+'
- '!v[0-9]+.[0-9]+.[0-9]+-pre.[0-9]+'
jobs:
release:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 40b8a52

Please sign in to comment.