Testing w/o containter for prep step
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user