diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 434cff3af4..f5eac84dac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -160,7 +160,11 @@ jobs: - name: Run Tests shell: bash run: . scripts/setenv -q && run-tests - # Should we upload any of these artifacts? Probably not... + - name: Upload artifacts (CI) + uses: actions/upload-artifact@v2-preview + with: + name: "OpenRCT2-macOS-cmake" + path: build/install/* linux-portable: name: Linux (x64, portable) diff --git a/scripts/build b/scripts/build index 29118ae71a..b5c9062b8d 100755 --- a/scripts/build +++ b/scripts/build @@ -36,7 +36,7 @@ else # macOS runners do not have Ninja installed by default if [[ $(uname) == "Darwin" ]]; then - cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local "$@" + cmake .. -DCMAKE_INSTALL_PREFIX=./install "$@" else cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX=/usr "$@" fi