Skip to content
This repository was archived by the owner on Aug 11, 2024. It is now read-only.
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
6 changes: 5 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

env:
UNITY_EDITOR_PATH: ''
UNITY_PROJECT_PATH: ''

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

Expand Down Expand Up @@ -46,4 +50,4 @@ jobs:

- run: |
echo "${{ env.UNITY_EDITOR_PATH }}"
echo "${{ env.UNITY_PROJECT_PATH }}"
echo "${{ env.UNITY_PROJECT_PATH }}"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v3

- id: unity-setup
uses: xrtk/unity-setup@v7
uses: xrtk/unity-setup@v7.2
with:
build-targets: ${{ matrix.build-targets }} #Optional, overrides the default platform specific module installs.
#version-file-path: 'ProjectSettings/ProjectVersion.txt' # Optional
Expand Down
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4151,6 +4151,7 @@ const main = async () => {
"Android": "android",
"tvOS": "appletv",
"StandaloneLinux64": "linux-il2cpp",
"WebGL": "webgl",
};
} else if (osType == 'Windows_NT') {
moduleMap = {
Expand Down
54 changes: 3 additions & 51 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unity-setup",
"version": "7.1.0",
"version": "7.2.0",
"description": "An atomic GitHub action to download and install the Unity Editor for runners.",
"main": "src/index.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const main = async () => {
"Android": "android",
"tvOS": "appletv",
"StandaloneLinux64": "linux-il2cpp",
"WebGL": "webgl",
};
} else if (osType == 'Windows_NT') {
moduleMap = {
Expand Down