Skip to content
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
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ A GitHub Action for setting up the [Unity Game Engine](https://unity.com) on Git
```yaml
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
unity-versions:
- 'in version file'
- 2019.4.40f1 (ffc62b691db5)
- 2020.3.48f1 (b805b124c6b7)
- 2021.3.41f1 (6c5a9e20c022)
- 2022.3.40f1 (cbdda657d2f0)
- 6000.0.13f1 (53a692e3fca9)
os: [ubuntu-latest, windows-latest, macos-latest]
unity-versions:
- 'in version file'
- 2019.4.40f1
- 2020.x
- 2021.3.x
- 2022.3
- 6000
include:
- os: ubuntu-latest
build-targets: StandaloneLinux64, Android, iOS
Expand Down
1 change: 0 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34802,7 +34802,6 @@ async function Unity(version, changeset, architecture, modules) {
}
await fs.promises.access(editorPath, fs.constants.X_OK);
core.info(`Unity Editor Path:\n > "${editorPath}"`);
core.addPath(editorPath);
try {
const changesetStr = changeset ? ` (${changeset})` : '';
core.startGroup(`Checking installed modules for Unity ${version}${changesetStr}...`);
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 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": "1.0.6",
"version": "1.0.7",
"description": "A GitHub action for setting up the Unity Game Engine for CI/CD workflows.",
"author": "RageAgainstThePixel",
"license": "MIT",
Expand Down
1 change: 0 additions & 1 deletion src/unity-hub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,6 @@ async function Unity(version: string, changeset: string, architecture: string, m
}
await fs.promises.access(editorPath, fs.constants.X_OK);
core.info(`Unity Editor Path:\n > "${editorPath}"`);
core.addPath(editorPath);
try {
const changesetStr = changeset ? ` (${changeset})` : '';
core.startGroup(`Checking installed modules for Unity ${version}${changesetStr}...`);
Expand Down