Skip to content

Commit 1611cde

Browse files
committed
Do not skip other jobs on when pushing tags
1 parent bee8506 commit 1611cde

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pre_job.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ jobs:
1515
run_it: >-
1616
${{
1717
steps.skip_check.outputs.should_skip != 'true' ||
18-
github.ref_name == github.event.repository.default_branch
18+
github.ref_name == github.event.repository.default_branch ||
19+
startsWith(github.ref, 'refs/tags')
1920
}}
2021
steps:
2122
- id: skip_check

0 commit comments

Comments
 (0)