From 1d4548d74c672422b2d7d0794a0097413bc059fc Mon Sep 17 00:00:00 2001 From: Zaytha Date: Mon, 7 Jul 2025 04:45:10 -0700 Subject: [PATCH] Testing w/o containter for prep step --- .gitea/workflows/godot-ci.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/godot-ci.yml b/.gitea/workflows/godot-ci.yml index cef36ac..bae9954 100644 --- a/.gitea/workflows/godot-ci.yml +++ b/.gitea/workflows/godot-ci.yml @@ -17,17 +17,18 @@ jobs: prepare-build: name: Prepare Build Assets runs-on: ubuntu-22.04 - container: - image: barichello/godot-ci:mono-4.4.1 # change to mono + # container: + # image: barichello/godot-ci:mono-4.4.1 # change to mono steps: # Doing this becuase barichello/godot-ci:4.4 doesn't have nodejs installed, may need to make own docker image in the future # By default ubuntu-22.04 has nodejs 12, but we need a more modern version for the actions/checkout@v4 - - name: Install Node.js + - name: Install Dependencies run: | apt-get update apt-get install -y curl curl -fsSL https://deb.nodesource.com/setup_18.x | bash - - apt-get install -y nodejs + apt-get install -y nodejs unzip git git git-lfs + git lfs install - name: Checkout uses: https://gitea.com/actions/checkout@v4 @@ -128,8 +129,9 @@ jobs: export-linux: name: Linux Export runs-on: ubuntu-22.04 # Use 22.04 with godot 4 + needs: prepare-build container: - image: barichello/godot-ci:4.4 + image: barichello/godot-ci:mono-4.4.1 # change to mono steps: # Doing this becuase barichello/godot-ci:4.4 doesn't have nodejs installed, may need to make own docker image in the future # By default ubuntu-22.04 has nodejs 12, but we need a more modern version for the actions/checkout@v4