Skip to content

Commit

Permalink
remove . from tag regex (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
maskarb authored Nov 30, 2023
1 parent c52ea90 commit a39ea2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ on:
push:
branches:
- 'main'
tags: # run on any tag that starts with `v.` but not tags that end with `-downstream`
- 'v.**'
- '!v.**-downstream'
tags: # run on any tag that starts with `v` but not tags that end with `-downstream`
- 'v**'
- '!v**-downstream'

jobs:
build-and-publish:
Expand Down

0 comments on commit a39ea2b

Please sign in to comment.