This commit is contained in:
Ruben Fiszel
2024-12-18 14:04:52 +01:00
parent 4f2ce0e39a
commit 59f3b50fb8
+2 -2
View File
@@ -35,7 +35,7 @@ permissions: write-all
jobs:
build:
runs-on: depot-ubuntu-22.04
if: (github.event_name != 'workflow_dispatch') || (!github.event.inputs.ee)
if: (github.event_name != 'workflow_dispatch') || (github.event.inputs.ee == false)
steps:
- uses: actions/checkout@v4
with:
@@ -97,7 +97,7 @@ jobs:
build_ee:
runs-on: depot-ubuntu-22.04
if: (github.event_name != 'workflow_dispatch') || (github.event.inputs.ee)
if: (github.event_name != 'workflow_dispatch') || (github.event.inputs.ee == true)
steps:
- uses: actions/checkout@v4
with: