Skip to content

Commit 35a8a17

Browse files
committed
ci: Reactivate simple jobs on push or pull_request
1 parent 42b5cc1 commit 35a8a17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
path: output/release/simulator/android/epsilon.apk
5353
device:
5454
runs-on: ${{ (github.repository == 'numworks/epsilon-internal') && 'self-hosted' || 'ubuntu-latest' }}
55-
if: ${{ github.event.inputs.device == 'true' }}
55+
if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.device == 'true' }}
5656
strategy:
5757
matrix:
5858
model: [n0110, n0115, n0120]
@@ -109,7 +109,7 @@ jobs:
109109
path: output/release/simulator/windows/epsilon.exe
110110
web:
111111
runs-on: ${{ (github.repository == 'numworks/epsilon-internal') && 'self-hosted' || 'ubuntu-latest' }}
112-
if: ${{ github.event.inputs.web == 'true' }}
112+
if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.web == 'true' }}
113113
steps:
114114
- uses: numworks/setup-emscripten@latest
115115
with:
@@ -125,7 +125,7 @@ jobs:
125125
retention-days: 7
126126
linux:
127127
runs-on: ${{ (github.repository == 'numworks/epsilon-internal') && 'self-hosted' || 'ubuntu-latest' }}
128-
if: ${{ github.event.inputs.linux == 'true' }}
128+
if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.linux == 'true' }}
129129
steps:
130130
- uses: numworks/setup-llvm@latest
131131
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)