From 884a8d63f16ccad65c3900e44f544ff806d24f4f Mon Sep 17 00:00:00 2001 From: "Simon (Darkside) Jackson" Date: Sat, 22 Jul 2023 16:45:39 +0100 Subject: [PATCH] Update case sensitivity of agent labels --- .github/workflows/rununitybuildmultiversion.yml | 16 ++++++++-------- .github/workflows/rununitysinglebuild.yml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/rununitybuildmultiversion.yml b/.github/workflows/rununitybuildmultiversion.yml index 3a5a542..ffd309c 100644 --- a/.github/workflows/rununitybuildmultiversion.yml +++ b/.github/workflows/rununitybuildmultiversion.yml @@ -18,7 +18,7 @@ jobs: - os: windows unityVersion: 2019.4 build-target: Android - - os: macos + - os: macOS unityVersion: 2019.4 build-target: iOS - os: windows @@ -30,7 +30,7 @@ jobs: - os: windows unityVersion: 2020.3 build-target: Android - - os: macos + - os: macOS unityVersion: 2020.3 build-target: iOS - os: windows @@ -42,7 +42,7 @@ jobs: - os: windows unityVersion: 2021.3 build-target: Android - - os: macos + - os: macOS unityVersion: 2021.3 build-target: iOS - os: windows @@ -54,7 +54,7 @@ jobs: - os: windows unityVersion: 2022.2 build-target: Android - - os: macos + - os: macOS unityVersion: 2022.2 build-target: iOS - os: windows @@ -101,12 +101,12 @@ jobs: } elseif ( $global:PSVersionTable.OS.Contains("Darwin") ) { - $hubPath = "/Applications/Unity Hub.app/Contents/MacOS/Unity Hub" + $hubPath = "/Applications/Unity Hub.app/Contents/macOS/Unity Hub" $editorRootPath = "/Applications/Unity/Hub/Editor/" - $editorFileEx = "/Unity.app/Contents/MacOS/Unity" + $editorFileEx = "/Unity.app/Contents/macOS/Unity" $directorySeparatorChar = "/" - # /Applications/Unity\ Hub.app/Contents/MacOS/Unity\ Hub -- --headless help + # /Applications/Unity\ Hub.app/Contents/macOS/Unity\ Hub -- --headless help function unity-hub { & $hubPath -- --headless $args.Split(" ") | Out-String -NoNewline @@ -218,7 +218,7 @@ jobs: } elseif ( $global:PSVersionTable.OS.Contains("Darwin") ) { echo 'Building using Mac' - $editorFileEx = "/Unity.app/Contents/MacOS/Unity" + $editorFileEx = "/Unity.app/Contents/macOS/Unity" $editorrunpath = Join-Path $editorRootPath $unityVersion $editorFileEx function unity-editor { diff --git a/.github/workflows/rununitysinglebuild.yml b/.github/workflows/rununitysinglebuild.yml index a6f2e8a..d6ba283 100644 --- a/.github/workflows/rununitysinglebuild.yml +++ b/.github/workflows/rununitysinglebuild.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: include: - - os: macos + - os: macOS build-target: iOS - os: windows build-target: Android