Skip to content

Commit

Permalink
ci: fix wrong tag regex for tower (#644)
Browse files Browse the repository at this point in the history
In #643, I accidentally included a `v` before the version number in the
regex for matching release tags for the `tower` crate, but not for
`tower-whatever` crates. All previous release tags on this repo don't
use a `v`, so adding it was a mistake. This branch removes it.
  • Loading branch information
hawkw authored Feb 16, 2022
1 parent 9c184d8 commit 5e280fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: create github release
on:
push:
tags:
- tower-v[0-9]+.*
- tower-[a-z]+-v[0-9]+.*
- tower-[0-9]+.*
- tower-[a-z]+-[0-9]+.*

jobs:
create-release:
Expand Down

0 comments on commit 5e280fe

Please sign in to comment.