Skip to content

Commit

Permalink
fix: invalid tag regex
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyg committed Nov 4, 2024
1 parent ecba9cc commit f303db2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-happ.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ on:
push:
tags:
- 'happ-v[0-9]+.[0-9]+.[0-9]+'
- 'happ-v[0-9]+.[0-9]+.[0-9]+-[a-z-]+'
- 'happ-v[0-9]+.[0-9]+.[0-9]+-[a-z-]+.[0-9]+'
- 'happ-v[0-9]+.[0-9]+.[0-9]+-[a-z\-]+'
- 'happ-v[0-9]+.[0-9]+.[0-9]+-[a-z\-]+.[0-9]+'

jobs:
publish-happ:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-tauri-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-[a-z-]+'
- 'v[0-9]+.[0-9]+.[0-9]+-[a-z-]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-[a-z\-]+'
- 'v[0-9]+.[0-9]+.[0-9]+-[a-z\-]+.[0-9]+'

jobs:
publish-happ:
Expand Down

0 comments on commit f303db2

Please sign in to comment.