Skip to content

Commit

Permalink
Do not skip other jobs on when pushing tags
Browse files Browse the repository at this point in the history
  • Loading branch information
8c6794b6 committed May 29, 2024
1 parent bee8506 commit 1611cde
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/pre_job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ jobs:
run_it: >-
${{
steps.skip_check.outputs.should_skip != 'true' ||
github.ref_name == github.event.repository.default_branch
github.ref_name == github.event.repository.default_branch ||
startsWith(github.ref, 'refs/tags')
}}
steps:
- id: skip_check
Expand Down

0 comments on commit 1611cde

Please sign in to comment.