Adding node js for checkout script
This commit is contained in:
@ -4,7 +4,7 @@ on: push
|
||||
# NOTE: If your `project.godot` is at the repository root, set `PROJECT_PATH` below to ".".
|
||||
|
||||
env:
|
||||
GODOT_VERSION: 4.3
|
||||
GODOT_VERSION: 4.4
|
||||
EXPORT_NAME: test-project
|
||||
PROJECT_PATH: "."
|
||||
|
||||
@ -13,8 +13,12 @@ jobs:
|
||||
name: Windows Export
|
||||
runs-on: ubuntu-22.04 # Use 22.04 with godot 4
|
||||
container:
|
||||
image: barichello/godot-ci:4.3
|
||||
image: barichello/godot-ci:4.4
|
||||
steps:
|
||||
- name: Install Node.js # Doing this becuase barichello/godot-ci:4.4 doesn't have nodejs installed, may need to make own docker image in the future
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install -y nodejs npm
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
@ -41,7 +45,7 @@ jobs:
|
||||
name: Linux Export
|
||||
runs-on: ubuntu-22.04 # Use 22.04 with godot 4
|
||||
container:
|
||||
image: barichello/godot-ci:4.3
|
||||
image: barichello/godot-ci:4.4
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
Reference in New Issue
Block a user