We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14055ef commit e767ea8Copy full SHA for e767ea8
1 file changed
.github/workflows/ci.yml
@@ -50,6 +50,10 @@ jobs:
50
shell: bash
51
run: |
52
set -euo pipefail
53
+ if [ -z "${RESONITE_PATH:-}" ]; then
54
+ echo '::error::Resonite path is empty. Ensure the setup-resonite-env step succeeded and exposed resonite-path.'
55
+ exit 1
56
+ fi
57
install -d "$RESONITE_PATH/Libraries" "$RESONITE_PATH/rml_libs"
58
curl -sSfL -o "$RESONITE_PATH/Libraries/ResoniteModLoader.dll" \
59
https://github.com/resonite-modding-group/ResoniteModLoader/releases/latest/download/ResoniteModLoader.dll
0 commit comments