Compare commits

...

4 Commits

Author SHA1 Message Date
Ruben Fiszel
ab6464a804 bench 2024-12-18 14:05:50 +01:00
Ruben Fiszel
59f3b50fb8 bench 2024-12-18 14:04:52 +01:00
Ruben Fiszel
4f2ce0e39a bench 2024-12-18 14:03:20 +01:00
Ruben Fiszel
168064c04f bench 2024-12-18 14:01:51 +01:00

View File

@@ -34,8 +34,8 @@ permissions: write-all
jobs:
build:
runs-on: ubicloud
if: (github.event_name != 'workflow_dispatch') || (github.event.inputs && !github.event.inputs.ee)
runs-on: depot-ubuntu-22.04
if: (github.event_name != 'workflow_dispatch') || (inputs.ee == false)
steps:
- uses: actions/checkout@v4
with:
@@ -96,9 +96,8 @@ jobs:
org.opencontainers.image.licenses=AGPLv3
build_ee:
runs-on: ubicloud
if:
(github.event_name != 'workflow_dispatch') || (github.event.inputs.ee)
runs-on: depot-ubuntu-22.04
if: (github.event_name != 'workflow_dispatch') || (github.event.inputs.ee == true)
steps:
- uses: actions/checkout@v4
with: