From f7d1fe14e8cd5a2ce9e9797e192c10b1579b17c3 Mon Sep 17 00:00:00 2001 From: Sch1nken Date: Sat, 14 Jun 2025 20:16:11 +0200 Subject: [PATCH] change runs on to docker for testing --- .forgejo/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 4158da1..0d6fd7b 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -19,7 +19,7 @@ env: jobs: delete-artifacts: - runs-on: ubuntu-latest + runs-on: docker steps: - uses: kolpav/purge-artifacts-action@v1 with: @@ -28,7 +28,7 @@ jobs: get-version: name: Get Version - runs-on: ubuntu-latest + runs-on: docker outputs: version: ${{ steps.set_version.outputs.value }} steps: @@ -43,7 +43,7 @@ jobs: export-windows: name: Windows Export - runs-on: ubuntu-latest + runs-on: docker needs: - get-version container: @@ -74,7 +74,7 @@ jobs: export-mac: name: Mac Export - runs-on: ubuntu-latest + runs-on: docker needs: - get-version container: @@ -107,7 +107,7 @@ jobs: needs: - get-version name: Linux Export - runs-on: ubuntu-latest + runs-on: docker container: image: barichello/godot-ci:4.4.1 steps: @@ -136,7 +136,7 @@ jobs: needs: - get-version name: Web Export - runs-on: ubuntu-latest + runs-on: docker container: image: barichello/godot-ci:4.4.1 steps: @@ -164,7 +164,7 @@ jobs: trigger-deploy: env: DEPLOY_OPTIONS: ${{ github.event.inputs.deploy-options }} # Default to none - runs-on: ubuntu-latest + runs-on: docker needs: - get-version - export-web