Skip to content

Commit

Permalink
workflow: fix check condition for duplicate skip
Browse files Browse the repository at this point in the history
- Add check condition tag push
  • Loading branch information
RuffaloLavoisier committed Nov 10, 2024
1 parent e636cc0 commit 8143914
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-OSW.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
Find-packages:
runs-on: ubuntu-latest
needs: check_skip
if: ${{ needs.check_skip.outputs.should_skip != 'true' }}
if: ${{ (needs.check_skip.outputs.should_skip != 'true') || startsWith(github.ref, 'refs/tags/v') }}
steps:
- name: Checkout repository and submodules
uses: nschloe/action-cached-lfs-checkout@v1
Expand Down

0 comments on commit 8143914

Please sign in to comment.