From ad4dd30dd41a8640ec2ae861db8c6ccce4483d01 Mon Sep 17 00:00:00 2001 From: Gabriel Le Breton Date: Mon, 4 Jan 2021 13:35:42 -0500 Subject: [PATCH 1/3] Run pipeline in no matter the branch and use v2.0-aplha-5 --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3e8d675..35163a6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,8 @@ name: Unity Actions on: pull_request: {} - push: { branches: [main, master, develop] } + push: {} + # push: { branches: [main, master, develop] } env: UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} @@ -91,7 +92,7 @@ jobs: restore-keys: | Library-${{ matrix.projectPath }}- Library- - - uses: webbertakken/unity-builder@v2.0-alpha-3 + - uses: webbertakken/unity-builder@v2.0-aplha-5 with: projectPath: ${{ env.PROJECT_PATH }} unityVersion: ${{ env.UNITY_VERSION }} From c32b57adb1b22bd13b10f13a72f38c7635051a55 Mon Sep 17 00:00:00 2001 From: Gabriel Le Breton Date: Mon, 4 Jan 2021 14:02:42 -0500 Subject: [PATCH 2/3] Remove extra 'customParameters: "-nographics"' --- .github/workflows/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 35163a6..c8e670f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -97,7 +97,6 @@ jobs: projectPath: ${{ env.PROJECT_PATH }} unityVersion: ${{ env.UNITY_VERSION }} targetPlatform: ${{ matrix.targetPlatform }} - customParameters: "-nographics" - uses: actions/upload-artifact@v2 with: name: Build From cdd8015908862d98bb9071949506f7698b2443ee Mon Sep 17 00:00:00 2001 From: Gabriel Le Breton Date: Mon, 4 Jan 2021 14:11:03 -0500 Subject: [PATCH 3/3] Revert change to actions trigger https://github.community/t/how-to-run-a-workflow-only-once-even-when-triggered-mutliple-times/16436/4 --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c8e670f..f458b9a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,8 +2,7 @@ name: Unity Actions on: pull_request: {} - push: {} - # push: { branches: [main, master, develop] } + push: { branches: [main, master, develop] } env: UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}