Skip to content
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
655840f
Remove deprecation
FejZa Dec 4, 2024
c273046
Merge branch 'main' of https://github.com/Dinomite-Studios/unity-azur…
FejZa Dec 4, 2024
4975a6f
Align UnityCMD input options with other tasks and remove deprecation
FejZa Dec 4, 2024
c8e09a9
Revert extension version change until ready for release
FejZa Dec 4, 2024
988d6bd
Organize input variables into logical groups
FejZa Dec 4, 2024
a4912d2
Add keystore input options
FejZa Dec 4, 2024
ac712ca
Map and pass new inputs
FejZa Dec 5, 2024
6e15da2
Add missing changelog
FejZa Dec 5, 2024
fc24194
Merge branch 'feature/unity-cmd-restart' into feature/unity-build-and…
FejZa Dec 5, 2024
0b9ff82
Add option to build app bundle instead of APK
FejZa Dec 5, 2024
fd4c619
Merge branch 'main' of https://github.com/Dinomite-Studios/unity-azur…
FejZa Dec 5, 2024
36c342f
Introduce new configuration option to build using build profile
FejZa Dec 6, 2024
499fa7b
Merge branch 'feature/unity-build-android-aab' of https://github.com/…
FejZa Dec 6, 2024
9c0810e
Update CHANGELOG
FejZa Dec 6, 2024
6703e78
Do not store build profile as filePath input since we only need the p…
FejZa Dec 6, 2024
ed38b3e
Merge branch 'main' of https://github.com/Dinomite-Studios/unity-azur…
FejZa Dec 9, 2024
ba68b4c
Merge branch 'main' of https://github.com/Dinomite-Studios/unity-azur…
FejZa Dec 9, 2024
f0dbdcc
Merge branch 'main' of https://github.com/Dinomite-Studios/unity-azur…
FejZa Dec 9, 2024
58ef8c7
Update README
FejZa Dec 9, 2024
df17cd9
Add PR trigger
FejZa Dec 9, 2024
298dff1
Update gitignore
FejZa Dec 9, 2024
0d5dc63
Fix tests
FejZa Dec 9, 2024
6a4ddd5
Merge branch 'feature/unity-build-android-signing' of https://github.…
FejZa Dec 9, 2024
8d31195
Merge branch 'main' of https://github.com/Dinomite-Studios/unity-azur…
FejZa Dec 10, 2024
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
27 changes: 25 additions & 2 deletions Tasks/UnityBuild/UnityBuildV3/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"author": "Dinomite",
"version": {
"Major": 3,
"Minor": 2,
"Patch": 5
"Minor": 3,
"Patch": 0
},
"releaseNotes": "[Full Changelog](https://github.com/Dinomite-Studios/unity-azure-pipelines-tasks/blob/master/Tasks/UnityBuild/UnityBuildV3/CHANGELOG.md)",
"minimumAgentVersion": "2.144.0",
Expand Down Expand Up @@ -91,13 +91,26 @@
"required": false,
"helpMarkDown": "(Optional) Enter the path to the Unity project within the repository. If no value is entered, the root of the repository will be used."
},
{
"name": "buildFlow",
"type": "radio",
"label": "Build Flow",
"defaultValue": "platform",
"helpMarkDown": "Select the build target flow used to build your project. Starting with Unity 6 the new build profiles offer a sophisticated way of building for different platforms.",
"groupName": "build",
"options": {
"platform": "Platform",
"profile": "Profile (Unity 6+)"
}
},
{
"name": "buildTarget",
"type": "pickList",
"label": "Build target",
"defaultValue": "standalone",
"helpMarkDown": "Build platform to build the Unity project for.",
"groupName": "build",
"visibleRule": "buildFlow = platform",
"options": {
"standalone": "Standalone (agent-based)",
"Win": "Windows Standalone (32-bit)",
Expand All @@ -120,6 +133,16 @@
"visionos": "visionOS"
}
},
{
"name": "buildProfile",
"type": "string",
"helpMarkDown": "Set the build profile saved at the given path as an active build profile for the build.",
"label": "Profile",
"groupName": "build",
"required": true,
"defaultValue": "",
"visibleRule": "buildFlow = profile"
},
{
"name": "buildScriptType",
"type": "radio",
Expand Down
Loading