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
1 change: 1 addition & 0 deletions .github/workflows/build-options.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"unity-version": [
"2019",
"2020",
"2021",
"2022",
"6000.0",
"6000.1",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
contents: read
steps:
- name: Free Disk Space
if: ${{ matrix.os == 'ubuntu-latest' && matrix.unity-version == '6000.2' }}
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: endersonmenezes/free-disk-space@713d134e243b926eba4a5cce0cf608bfd1efb89a # v2.1.1
with:
remove_android: true
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ outputs:
project-path:
description: The path to the created Unity project.
runs:
using: 'node20'
main: 'dist/index.js'
using: node24
main: dist/index.js
274 changes: 235 additions & 39 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.

39 changes: 20 additions & 19 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-unity-project",
"version": "2.0.2",
"version": "2.0.3",
"description": "A GitHub Action to create a new Unity Project using a predefined template package.",
"author": "RageAgainstThePixel",
"repository": {
Expand All @@ -20,10 +20,10 @@
"main": "dist/index.js",
"dependencies": {
"@actions/core": "^1.11.1",
"@rage-against-the-pixel/unity-cli": "^1.5.3"
"@rage-against-the-pixel/unity-cli": "^1.5.4"
},
"devDependencies": {
"@types/node": "^22.18.13",
"@types/node": "^22.19.1",
"@vercel/ncc": "^0.34.0",
"shx": "^0.3.4",
"typescript": "^5.9.3"
Expand Down
Loading