Bump to Ubuntu 24.04, .NET 9.0, Godot 4.5, remove rcedit as it's not needed anymore (#184)

This commit is contained in:
laraproto
2025-09-18 17:37:34 +03:00
committed by GitHub
parent e1b7d54a34
commit 9760acc92f
6 changed files with 18 additions and 29 deletions

View File

@@ -8,7 +8,7 @@ on:
jobs:
fetch:
name: Fetch Latest Godot Engine Release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
release_tag: ${{ steps.parse.outputs.tag }}
steps:
@@ -20,7 +20,7 @@ jobs:
echo "tag=$TAG" >> $GITHUB_OUTPUT
current:
name: Fetch Current Godot CI release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
release_tag: ${{ steps.parse.outputs.tag }}
steps:
@@ -32,7 +32,7 @@ jobs:
create:
needs: [fetch, current]
name: Create New Godot CI Release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: needs.fetch.outputs.release_tag != needs.current.outputs.release_tag
steps:
- uses: actions/checkout@v3

View File

@@ -11,7 +11,7 @@ env:
jobs:
export-windows:
name: Windows Export
runs-on: ubuntu-22.04 # Use 22.04 with godot 4
runs-on: ubuntu-24.04 # Use 24.04 with godot 4
container:
image: barichello/godot-ci:4.3
steps:
@@ -39,7 +39,7 @@ jobs:
export-linux:
name: Linux Export
runs-on: ubuntu-22.04 # Use 22.04 with godot 4
runs-on: ubuntu-24.04 # Use 24.04 with godot 4
container:
image: barichello/godot-ci:4.3
steps:
@@ -65,7 +65,7 @@ jobs:
export-web:
name: Web Export
runs-on: ubuntu-22.04 # Use 22.04 with godot 4
runs-on: ubuntu-24.04 # Use 24.04 with godot 4
container:
image: barichello/godot-ci:4.3
steps:
@@ -99,7 +99,7 @@ jobs:
export-mac:
name: Mac Export
runs-on: ubuntu-22.04 # Use 22.04 with godot 4
runs-on: ubuntu-24.04 # Use 24.04 with godot 4
container:
image: barichello/godot-ci:4.3
steps:

View File

@@ -20,7 +20,7 @@ env:
jobs:
version:
name: Get Version
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
dotnet_version: ${{ steps.calculate.outputs.dotnet_version }}
steps:
@@ -39,7 +39,7 @@ jobs:
fi
get_tags:
name: Get Tags
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
tags: ${{steps.write_tags.outputs.tags}}
tags_mono: ${{steps.write_tags_mono.outputs.tags}}
@@ -76,7 +76,7 @@ jobs:
retention-days: 1
build:
name: Build Image
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: get_tags
steps:
- uses: actions/download-artifact@v4
@@ -115,7 +115,7 @@ jobs:
GODOT_PLATFORM=${{ startsWith( github.event.inputs.version, '3.' ) && 'linux_headless.64' || 'linux.x86_64' }}
build-mono:
name: Build Mono Image
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [version, get_tags]
steps:
- uses: actions/download-artifact@v4

View File

@@ -7,7 +7,7 @@ env:
jobs:
version:
name: Get Version
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
version: ${{ steps.calculate.outputs.version }}
release_name: ${{ steps.calculate.outputs.release_name }}
@@ -32,7 +32,7 @@ jobs:
build:
name: Build Image
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [version]
steps:
- uses: actions/checkout@v3
@@ -66,7 +66,7 @@ jobs:
GODOT_PLATFORM=${{ startsWith( needs.version.outputs.version, '3.' ) && 'linux_headless.64' || 'linux.x86_64' }}
build-mono:
name: Build Mono Image
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [version]
steps:
- uses: actions/checkout@v3