From b9844a55ac7aaaf44b1264f6f953379168c3f603 Mon Sep 17 00:00:00 2001 From: Antonio Dell'Annunziata Date: Sun, 2 Mar 2025 11:37:41 +0100 Subject: [PATCH] Fix wrong runs-on label --- .forgejo/workflows/godot-ci.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.forgejo/workflows/godot-ci.yml b/.forgejo/workflows/godot-ci.yml index cbb7300..36f4d89 100644 --- a/.forgejo/workflows/godot-ci.yml +++ b/.forgejo/workflows/godot-ci.yml @@ -11,14 +11,15 @@ env: jobs: export-windows: name: Windows Export - runs-on: ubuntu-20.04 + runs-on: docker + container: + image: git.antonio-da.dev/antoniodell/godot-ci:latest steps: - name: Checkout uses: actions/checkout@v4 with: lfs: true - name: Windows Build - uses: https://git.antonio-da.dev/antoniodell/godot-ci@main run: | mkdir -v -p ~/.local/share/godot/export_templates/ mkdir -v -p ~/.config/ @@ -36,14 +37,15 @@ jobs: export-linux: name: Linux Export - runs-on: ubuntu-20.04 + runs-on: docker + container: + image: git.antonio-da.dev/antoniodell/godot-ci:latest steps: - name: Checkout uses: actions/checkout@v4 with: lfs: true - name: Linux Build - uses: https://git.antonio-da.dev/antoniodell/godot-ci@main run: | mkdir -v -p ~/.local/share/godot/export_templates/ mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable @@ -59,14 +61,15 @@ jobs: export-web: name: Web Export - runs-on: ubuntu-20.04 + runs-on: docker + container: + image: git.antonio-da.dev/antoniodell/godot-ci:latest steps: - name: Checkout uses: actions/checkout@v4 with: lfs: true - name: Web Build - uses: https://git.antonio-da.dev/antoniodell/godot-ci@main run: | mkdir -v -p ~/.local/share/godot/export_templates/ mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable @@ -82,14 +85,15 @@ jobs: export-mac: name: Mac Export - runs-on: ubuntu-20.04 + runs-on: docker + container: + image: git.antonio-da.dev/antoniodell/godot-ci:latest steps: - name: Checkout uses: actions/checkout@v4 with: lfs: true - name: Mac Build - uses: https://git.antonio-da.dev/antoniodell/godot-ci@main run: | mkdir -v -p ~/.local/share/godot/export_templates/ mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable