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
4 changes: 2 additions & 2 deletions .github/workflows/build-options.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"None",
"4.7.2",
"5.6.7f1 (e80cc3114ac1)",
"2017",
"2017.4.40f1",
"2018",
"2019.x",
"2020.*",
"2021.3.x",
"2022.x",
"2022.3.*",
"6000.0.x",
"6000.1.*",
"6000.2"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
BUILD_OUTPUT_PATH: ${{ github.workspace }}/Builds/${{ matrix.build-target }}
steps:
- name: Free Disk Space
if: ${{ matrix.os == 'ubuntu-latest' && matrix.unity-version == '6000.2' }}
if: ${{ matrix.os == 'ubuntu-latest' && (matrix.unity-version != '2018' && matrix.unity-version != '2017.4.40f1') }}
uses: endersonmenezes/free-disk-space@713d134e243b926eba4a5cce0cf608bfd1efb89a # v2.1.1
with:
remove_android: true
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ outputs:
unity-project-path:
description: 'The file path to the Unity project.'
runs:
using: node20
using: node24
main: dist/index.js
262 changes: 227 additions & 35 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unity-setup",
"version": "2.2.0",
"version": "2.2.1",
"description": "A GitHub action for setting up the Unity Game Engine for CI/CD workflows.",
"author": "RageAgainstThePixel",
"license": "MIT",
Expand All @@ -27,7 +27,7 @@
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.5.0",
"@rage-against-the-pixel/unity-cli": "^1.5.3",
"@rage-against-the-pixel/unity-cli": "^1.5.4",
"semver": "^7.7.3",
"yaml": "^2.8.1"
},
Expand Down
Loading