mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 16:47:13 +01:00
Adds a .NET 9 SDK setup action to linters (#88988)
## About The Pull Request OpenDream was recently bumped to .NET 9, which is not on our runner image. I added an action which installs the required .NET version for DMCompiler to function. ## Why It's Good Adding this action is not only good as a quick hack fix, but also for posterity. I also considered the impact this has on our runner execution time, but my hope is that it should not matter if we have .NET installed already.
This commit is contained in:
@@ -75,6 +75,10 @@ jobs:
|
||||
with:
|
||||
path: tools/icon_cutter/cache
|
||||
key: ${{ runner.os }}-cutter-${{ hashFiles('dependencies.sh') }}
|
||||
- name: Setup .NET SDK
|
||||
uses: actions/setup-dotnet@v4.2.0
|
||||
with:
|
||||
dotnet-version: 9.x
|
||||
- name: Install OpenDream
|
||||
uses: robinraju/release-downloader@v1.11
|
||||
with:
|
||||
|
||||
Reference in New Issue
Block a user