File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 10
10
11
11
jobs :
12
12
build :
13
- runs-on : ubuntu-latest
13
+ runs-on : ubuntu-22.04
14
14
steps :
15
15
- name : Checkout
16
16
uses : actions/checkout@v4
@@ -25,16 +25,15 @@ jobs:
25
25
id : bepinexversion
26
26
run : echo "bepinexversion=$(./scripts/get-dep-version.sh denikson-BepInExPack_Valheim)" >> $GITHUB_OUTPUT
27
27
28
+ - name : Create NuGet config path
29
+ # If we don't make this in advance, NuGet will somehow initialize it in a way that makes it unreadable to NuGet. :shrug:
30
+ run : mkdir -p ~/.config/NuGet/ && touch ~/.config/NuGet/NuGet.Config
31
+
28
32
- name : Get build commands
29
33
run : scripts/install-linux-tools.sh
30
34
31
35
- name : Install NuGet dependencies
32
- run : |
33
- # Fixes weird permission errors that started in GitHub Actions
34
- # environments on June 14th:
35
- sudo chown -R $USER /tmp/NuGetScratch/
36
-
37
- nuget restore Pokeheim.sln
36
+ run : nuget restore Pokeheim.sln
38
37
39
38
- name : Cache Valheim
40
39
id : cachevalheim
You can’t perform that action at this time.
0 commit comments