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

xrtk/unity-setup@v7.4 #24

Merged
merged 8 commits into from
Jan 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
UNITY_PROJECT_PATH: ''

concurrency:
group: ${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}

jobs:
validate:
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,11 @@ jobs:
- uses: actions/checkout@v4

- id: unity-setup
uses: xrtk/unity-setup@v7.3
uses: xrtk/unity-setup@v7.4
with:
build-targets: ${{ matrix.build-targets }} #Optional, overrides the default platform specific module installs.
#version-file-path: 'ProjectSettings/ProjectVersion.txt' # Optional
build-targets: ${{ matrix.build-targets }} # Optional, specify the build targets to install
version-file-path: 'ProjectSettings/ProjectVersion.txt' # Optional, specify a path to the unity project version text file
architecture: 'arm64' # Optional, specify the architecture to install (x86_64 or arm64)

- run: |
echo "${{ env.UNITY_EDITOR_PATH }}"
Expand Down
7 changes: 6 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ inputs:
description: 'Optional, Additional modules to install with the editor (i.e "webgl android lumin")'
required: false
default: ''
architecture:
description: 'Optional, specify the architecture to install (x86_64 or arm64)'
required: false
default: ''

runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
Loading