Importante
A ação não é mais mantida e foi movida para buildalon/unity-setup
Uma ação atômica do GitHub para baixar e instalar o Unity Editor para corredores.
UNITY_EDITOR_PATH
O caminho para a instalação do Unity Editor.UNITY_PROJECT PATH
O caminho para o Projeto Unity.UNITY_EDITOR_VERSION
A versão do Unity Editor que foi instalada.Parte do projeto de código aberto Mixed Reality Toolkit (XRTK).
Esta ação não requer o uso de XRTK em seu projeto Unity.
jobs :
setup-unity :
strategy :
runs-on : ${{ matrix.os }}
strategy :
matrix :
include :
- os : ubuntu-latest
build-targets : ' StandaloneLinux64 Android iOS '
- os : windows-latest
build-targets : ' StandaloneWindows64 Android iOS '
- os : macos-latest
build-targets : ' StandaloneOSX Android iOS '
steps :
- uses : actions/checkout@v4
- id : unity-setup
uses : xrtk/unity-setup@v7
with :
build-targets : ${{ matrix.build-targets }} # Optional, specify the build targets to install
version-file-path : ' ProjectSettings/ProjectVersion.txt ' # Optional, specify a path to the unity project version text file
# architecture: 'arm64' # Optional, specify the architecture to install (x86_64 or arm64)
- run : |
echo "${{ env.UNITY_EDITOR_PATH }}"
echo "${{ env.UNITY_PROJECT_PATH }}"