Skip to content

Commit

Permalink
ci: Fix tag pattern in release workflow (#40)
Browse files Browse the repository at this point in the history
Due to YAML parsing, the pattern requires surrounding quotes.
See here for details:
https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
  • Loading branch information
agrski authored Jun 4, 2023
1 parent 90a9f0b commit 95aa827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: create-release
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+*
- 'v[0-9]+.[0-9]+.[0-9]+*'
jobs:
create-release:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 95aa827

Please sign in to comment.