Skip to content
This repository was archived by the owner on Aug 11, 2024. It is now read-only.

Commit 75bee72

Browse files
* xrtk/[email protected] - added VisionOS platform target to module map
1 parent adb6833 commit 75bee72

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

.github/workflows/validate.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- os: windows-latest
3131
build-targets: 'StandaloneWindows64 Android iOS'
3232
- os: macos-14
33-
build-targets: 'StandaloneOSX Android iOS'
33+
build-targets: 'StandaloneOSX Android iOS VisionOS'
3434
- os: macos-latest
3535
build-targets: 'StandaloneOSX Android iOS'
3636

@@ -45,6 +45,7 @@ jobs:
4545
with:
4646
repository: xrtk/com.xrtk.test
4747
path: test-project
48+
ref: development
4849

4950
- uses: ./ # xrtk/unity-setup
5051
id: unity-setup

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ jobs:
4040
- uses: actions/checkout@v4
4141

4242
- id: unity-setup
43-
uses: xrtk/unity-setup@v7.4
43+
uses: xrtk/unity-setup@v7
4444
with:
4545
build-targets: ${{ matrix.build-targets }} # Optional, specify the build targets to install
4646
version-file-path: 'ProjectSettings/ProjectVersion.txt' # Optional, specify a path to the unity project version text file
47-
architecture: 'arm64' # Optional, specify the architecture to install (x86_64 or arm64)
47+
# architecture: 'arm64' # Optional, specify the architecture to install (x86_64 or arm64)
4848

4949
- run: |
5050
echo "${{ env.UNITY_EDITOR_PATH }}"

dist/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -28109,6 +28109,7 @@ const main = async () => {
2810928109
"tvOS": "appletv",
2811028110
"StandaloneLinux64": "linux-il2cpp",
2811128111
"WebGL": "webgl",
28112+
"VisionOS": "visionos"
2811228113
};
2811328114
} else if (osType == 'Windows_NT') {
2811428115
moduleMap = {

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unity-setup",
3-
"version": "7.5.1",
3+
"version": "7.5.2",
44
"description": "An atomic GitHub action to download and install the Unity Editor for runners.",
55
"main": "src/index.js",
66
"scripts": {

src/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ const main = async () => {
4848
"tvOS": "appletv",
4949
"StandaloneLinux64": "linux-il2cpp",
5050
"WebGL": "webgl",
51+
"VisionOS": "visionos"
5152
};
5253
} else if (osType == 'Windows_NT') {
5354
moduleMap = {

0 commit comments

Comments
 (0)