Skip to content

Commit

Permalink
fix: update publish.yml to use the correct glob pattern for building …
Browse files Browse the repository at this point in the history
…tags

Github Actions workflow was not building tags correctly.
This commit fixes the issue by updating the glob pattern to build tags.

Signed-off-by: yash-zededa <yash@zededa.com>
(cherry picked from commit 395a8da)
  • Loading branch information
yash-zededa committed Oct 21, 2024
1 parent 59080eb commit e07dd63
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ on: # yamllint disable-line rule:truthy
- '**/*.md'
- '.github/**'
tags:
- "[0-9]+\\.[0-9]+\\.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+-lts"
- "[0-9]+.[0-9]+.[0-9]+-rc[0-9]+"

jobs:
packages:
Expand Down

0 comments on commit e07dd63

Please sign in to comment.