Fix Mono Docker image still using .NET 8.0 and Ubuntu 22.04

It should now use .NET 9.0 and Ubuntu 22.04 like the standard
Docker image.
This commit is contained in:
Hugo Locurcio
2025-09-24 17:25:18 +02:00
parent 9760acc92f
commit a20f4cc32a

View File

@@ -34,8 +34,11 @@ jobs:
elif [ "$MINOR_VERSION" = "4.0" ] || [ "$MINOR_VERSION" = "4.1" ] || [ "$MINOR_VERSION" = "4.2" ] || [ "$MINOR_VERSION" = "4.3" ]
then
echo "dotnet_version=mcr.microsoft.com/dotnet/sdk:6.0-jammy" >> $GITHUB_OUTPUT
else
elif [ "$MINOR_VERSION" = "4.4" ]
then
echo "dotnet_version=mcr.microsoft.com/dotnet/sdk:8.0-jammy" >> $GITHUB_OUTPUT
else
echo "dotnet_version=mcr.microsoft.com/dotnet/sdk:9.0-noble" >> $GITHUB_OUTPUT
fi
get_tags:
name: Get Tags
@@ -153,4 +156,3 @@ jobs:
SUBDIR=${{ github.event.inputs.release_name != 'stable' && format('/{0}', github.event.inputs.release_name) || '' }}
ZIP_GODOT_PLATFORM=${{ startsWith( github.event.inputs.version, '3.' ) && 'linux_headless_64' || 'linux_x86_64' }}
FILENAME_GODOT_PLATFORM=${{ startsWith( github.event.inputs.version, '3.' ) && 'linux_headless.64' || 'linux.x86_64' }}