Skip to content

Commit

Permalink
build: Correct branch regex
Browse files Browse the repository at this point in the history
  • Loading branch information
zml2008 committed Jan 20, 2022
1 parent 2813c40 commit d46aade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
id: branch-name
with:
text: ${{ github.ref }}
regex: '^refs/heads/(master|(\d+\.(?:\d+\.)x))$' # master or something like 0.8.x or 2.x
regex: '^refs/heads/(master|(\d+\.(?:\d+\.)?x))$' # master or something like 0.8.x or 2.x

# Then publish if we are all set up to do so
- name: Determine status
Expand Down

0 comments on commit d46aade

Please sign in to comment.