Skip to content

Commit

Permalink
workflows bugfix concurrency (run only once)
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Apr 21, 2024
1 parent 6720787 commit 3a8ca12
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/linux-qt6-drivers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,9 @@ jobs:
# one will be in_progress and the second will be queued (waiting until the first finish),
# and all others will be canceled.
- name: Run vcpkg-linux.yml workflows
if: matrix.build-type.key == 'debug' && matrix.compiler.key == 'clang18'
if: >-
matrix.drivers-type == 'Shared' && matrix.build-type.key == 'debug' &&
matrix.compiler.key == 'clang18'
working-directory: ${{ env.TinyORMPath }}
run: |
gh workflow run vcpkg-linux.yml --ref ${{ github.ref_name }}
Expand Down

0 comments on commit 3a8ca12

Please sign in to comment.