Use dotnet image for Godot 4 (#106)

This commit is contained in:
Adrasteon
2025-03-07 22:40:58 +01:00
committed by GitHub
parent d68f7da1ee
commit f0c298633b
6 changed files with 52 additions and 17 deletions

View File

@@ -8,7 +8,7 @@ on:
jobs:
fetch:
name: Fetch Latest Godot Engine Release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.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-20.04
runs-on: ubuntu-22.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-20.04
runs-on: ubuntu-22.04
if: needs.fetch.outputs.release_tag != needs.current.outputs.release_tag
steps:
- uses: actions/checkout@v3