From 93f0d39873841ad104f0383bde85a34ca4060db4 Mon Sep 17 00:00:00 2001 From: Joey Parrish Date: Tue, 7 Jan 2025 13:33:11 -0800 Subject: [PATCH] Fix build workflow - Downgrade Ubuntu - Tweak NuGet workarounds --- .github/workflows/build.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9615f2c..e295baa 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -10,7 +10,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v4 @@ -31,8 +31,11 @@ jobs: - name: Install NuGet dependencies run: | # Fixes weird permission errors that started in GitHub Actions - # environments on June 14th: + # environments on June 14th 2022: sudo chown -R $USER /tmp/NuGetScratch/ + # Fixes weird permission errors that started in GitHub Actions + # environments on January 24th 2023: + sudo chown -R $USER ~/.config/NuGet/ nuget restore Pokeheim.sln