From b1a20cfa011095955bb161fb2c09aea861de687e Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Tue, 28 Sep 2021 02:11:10 -0400 Subject: [PATCH] updated workflow template --- workflow-templates/upm-build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 }}