From 35a8a17ba25b118d5e448c5273d803e16681071a Mon Sep 17 00:00:00 2001 From: Hugo Saint-Vignes Date: Thu, 11 Jul 2024 15:27:36 +0200 Subject: [PATCH] ci: Reactivate simple jobs on push or pull_request --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19dd8d5444..c54682366c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: path: output/release/simulator/android/epsilon.apk device: runs-on: ${{ (github.repository == 'numworks/epsilon-internal') && 'self-hosted' || 'ubuntu-latest' }} - if: ${{ github.event.inputs.device == 'true' }} + if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.device == 'true' }} strategy: matrix: model: [n0110, n0115, n0120] @@ -109,7 +109,7 @@ jobs: path: output/release/simulator/windows/epsilon.exe web: runs-on: ${{ (github.repository == 'numworks/epsilon-internal') && 'self-hosted' || 'ubuntu-latest' }} - if: ${{ github.event.inputs.web == 'true' }} + if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.web == 'true' }} steps: - uses: numworks/setup-emscripten@latest with: @@ -125,7 +125,7 @@ jobs: retention-days: 7 linux: runs-on: ${{ (github.repository == 'numworks/epsilon-internal') && 'self-hosted' || 'ubuntu-latest' }} - if: ${{ github.event.inputs.linux == 'true' }} + if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.linux == 'true' }} steps: - uses: numworks/setup-llvm@latest - uses: actions/checkout@v3