We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41d2d48 commit 14055efCopy full SHA for 14055ef
1 file changed
.github/workflows/ci.yml
@@ -44,6 +44,18 @@ jobs:
44
steam-user: ${{ secrets.STEAMUSER }}
45
steam-password: ${{ secrets.STEAMPASS }}
46
47
+ - name: Install ResoniteModLoader binaries
48
+ env:
49
+ RESONITE_PATH: ${{ steps.resonite.outputs.resonite-path }}
50
+ shell: bash
51
+ run: |
52
+ set -euo pipefail
53
+ install -d "$RESONITE_PATH/Libraries" "$RESONITE_PATH/rml_libs"
54
+ curl -sSfL -o "$RESONITE_PATH/Libraries/ResoniteModLoader.dll" \
55
+ https://github.com/resonite-modding-group/ResoniteModLoader/releases/latest/download/ResoniteModLoader.dll
56
+ curl -sSfL -o "$RESONITE_PATH/rml_libs/0Harmony.dll" \
57
+ https://github.com/resonite-modding-group/ResoniteModLoader/releases/latest/download/0Harmony.dll
58
+
59
- name: Setup .NET SDK
60
uses: actions/setup-dotnet@v4
61
with:
0 commit comments