Testing w/o containter for prep step
Some checks failed
godot-ci export / Prepare Build Assets (push) Successful in 1m18s
godot-ci export / Steam Publish (push) Has been cancelled
godot-ci export / Windows Export (push) Has been cancelled
godot-ci export / Linux Export (push) Has been cancelled

This commit is contained in:
2025-07-07 04:45:10 -07:00
parent 147d6b2d04
commit 1d4548d74c

View File

@ -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