Skip to content

Commit

Permalink
ci: fix not running publish jobs on tag push
Browse files Browse the repository at this point in the history
> If you define only tags/tag-ignore or only branches/branches-ignore,
> the workflow won't run for events affecting the undefined Git ref. If
> you define neither tags/tag-ignore or branches/branches-ignore,
> the workflow will run for events affecting either branches or tags.
> If you define both branches/branches-ignore and paths, the workflow
> will only run when both filters are satisfied.
  • Loading branch information
JanTvrdik committed Feb 7, 2022
1 parent 8c1c13e commit fd90927
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: CI
on:
push:
branches-ignore: ['pr/**']
tags: ['**']
pull_request:
workflow_dispatch:

Expand Down

0 comments on commit fd90927

Please sign in to comment.