Compare commits

2 Commits

Author SHA1 Message Date
ebe34e1750 fix: remove redundant Node installation steps from export jobs in release workflow
Some checks failed
Build Release / Windows Export (pull_request) Has been cancelled
Build Release / Linux Export (pull_request) Has been cancelled
Build Release / Mac Export (pull_request) Has been cancelled
Build Release / Create Release (pull_request) Has been cancelled
2026-03-17 21:52:18 +01:00
c9743d65b7 fix: update runner images for Windows, Linux, and Mac export jobs in release workflow 2026-03-17 21:51:52 +01:00

View File

@@ -14,13 +14,9 @@ env:
jobs:
export-windows:
name: Windows Export
runs-on: ubuntu-24.04 # Use 24.04 with godot 4
runs-on: ghcr.io/catthehacker/ubuntu:full-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:
@@ -45,13 +41,9 @@ jobs:
export-linux:
name: Linux Export
runs-on: ubuntu-24.04 # Use 24.04 with godot 4
runs-on: ghcr.io/catthehacker/ubuntu:full-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:
@@ -74,7 +66,7 @@ jobs:
# export-web:
# name: Web Export
# runs-on: ubuntu-24.04 # Use 24.04 with godot 4
# runs-on: ghcr.io/catthehacker/ubuntu:full-24.04 # Use 24.04 with godot 4
# container:
# image: barichello/godot-ci:4.3
# steps:
@@ -108,13 +100,9 @@ jobs:
export-mac:
name: Mac Export
runs-on: ubuntu-24.04 # Use 24.04 with godot 4
runs-on: ghcr.io/catthehacker/ubuntu:full-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: