fix: streamline Node installation steps in export jobs for all platforms
Some checks failed
Build Release / Windows Export (pull_request) Failing after 1m50s
Build Release / Linux Export (pull_request) Failing after 1m51s
Build Release / Mac Export (pull_request) Failing after 1m50s
Build Release / Create Release (pull_request) Has been skipped

This commit is contained in:
2026-03-17 21:50:08 +01:00
parent aa6ac812cf
commit 70c407b5f9

View File

@@ -17,14 +17,16 @@ jobs:
runs-on: ubuntu-24.04 # Use 24.04 with godot 4
container: barichello/godot-ci:4.3
steps:
- name: Node
run: |
apt-get update -qq
apt-get install -y -qq
- name: Checkout
uses: actions/checkout@v6
with:
lfs: true
- name: Setup
run: |
apt-get update
apt-get install -y nodejs npm
mkdir -v -p ~/.local/share/godot/export_templates/
mkdir -v -p ~/.config/
mv /root/.config/godot ~/.config/godot
@@ -46,14 +48,16 @@ jobs:
runs-on: ubuntu-24.04 # Use 24.04 with godot 4
container: barichello/godot-ci:4.3
steps:
- name: Node
run: |
apt-get update -qq
apt-get install -y -qq
- name: Checkout
uses: actions/checkout@v6
with:
lfs: true
- name: Setup
run: |
apt-get update
apt-get install -y nodejs npm
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
- name: Linux Build
@@ -107,14 +111,16 @@ jobs:
runs-on: ubuntu-24.04 # Use 24.04 with godot 4
container: barichello/godot-ci:4.3
steps:
- name: Node
run: |
apt-get update -qq
apt-get install -y -qq
- name: Checkout
uses: actions/checkout@v6
with:
lfs: true
- name: Setup
run: |
apt-get update
apt-get install -y nodejs npm
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
- name: Mac Build