Skip to content

Commit

Permalink
Include all tags using "*"
Browse files Browse the repository at this point in the history
Using "v.*" probably accepts only tags which start with the fixed string "v.", which will never
happen. This is not regular expression but Glob according to the documentation.

	The =branches=, =branches-ignore=, =tags=, and =tags-ignore= keywords accept glob patterns that use characters like =*=, =**=, =+=, =?=, =!= and others to match more than one branch or tag name. If a name contains any of these characters and you want a literal match, you need to /escape/ each of these special characters with =\= . For more information about glob patterns, see the "[[https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet][Workflow syntax for GitHub Actions]]."

	-- [[https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpushbranchestagsbranches-ignoretags-ignore][Workflow syntax for GitHub Actions - GitHub Docs]]
	(/Retrieved:/ [2024-07-12 Fri 14:50])
  • Loading branch information
icyflame committed Jul 12, 2024
1 parent 7206d5d commit 4715ac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build Binary
on:
push:
tags:
- v.*
- v*

jobs:
build:
Expand Down

0 comments on commit 4715ac8

Please sign in to comment.