Update workflow paths and conditions in dispatcher.yml

This commit is contained in:
Hatvani Tamás
2025-11-05 15:00:42 +01:00
committed by GitHub
parent b5902c0bb7
commit 7ef9855016

View File

@@ -46,24 +46,24 @@ jobs:
engine:
needs: dispatch
if: needs.determine.outputs.engine == 'true'
uses: ./engine_test.yml
if: needs.dispatch.outputs.engine == 'true'
uses: ./.github/workflows/engine_test.yml
with:
branch: ${{ github.ref_name }}
secrets: inherit
server:
needs: dispatch
if: needs.determine.outputs.server == 'true'
uses: ./server_test.yml
if: needs.dispatch.outputs.server == 'true'
uses: ./.github/workflows/server_test.yml
with:
branch: ${{ github.ref_name }}
secrets: inherit
ui:
needs: dispatch
if: needs.determine.outputs.ui == 'true'
uses: ./ui_test.yml
if: needs.dispatch.outputs.ui == 'true'
uses: ./.github/workflows/ui_test.yml
with:
branch: ${{ github.ref_name }}
secrets: inherit