Skip to content

Commit 8143914

Browse files
workflow: fix check condition for duplicate skip
- Add check condition tag push
1 parent e636cc0 commit 8143914

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-OSW.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
Find-packages:
2424
runs-on: ubuntu-latest
2525
needs: check_skip
26-
if: ${{ needs.check_skip.outputs.should_skip != 'true' }}
26+
if: ${{ (needs.check_skip.outputs.should_skip != 'true') || startsWith(github.ref, 'refs/tags/v') }}
2727
steps:
2828
- name: Checkout repository and submodules
2929
uses: nschloe/action-cached-lfs-checkout@v1

0 commit comments

Comments
 (0)