diff --git a/workflow-templates/upm-build.yml b/workflow-templates/upm-build.yml index fd1ec8f..74ffad2 100644 --- a/workflow-templates/upm-build.yml +++ b/workflow-templates/upm-build.yml @@ -10,10 +10,6 @@ concurrency: group: ${{ github.head_ref }} cancel-in-progress: true -stragegy: - matrix: - build-target: [StandaloneWindows64, WSAPlayer, Android] - jobs: setup: runs-on: self-hosted @@ -24,6 +20,7 @@ jobs: - uses: actions/checkout@v2 - id: validate-unity-installation + name: 'Unity Installation Validation' run: | Write-Host "Unity Installation Validation" $editorRootPath = "" @@ -110,12 +107,15 @@ jobs: build: needs: setup runs-on: self-hosted + stragegy: + matrix: + build-target: [StandaloneWindows64, WSAPlayer, Android] steps: - uses: actions/checkout@v2 submodules: true - - uses: xrtk/unity-action@v1.0.0-preview.1 + - uses: xrtk/unity-action@main with: name: 'validation' editor-path: ${{ needs.setup.outputs.editor-path }}