From 8fc90692247b2f6344bcc45f9c14767ed743c83a Mon Sep 17 00:00:00 2001
From: Gabriel Le Breton <lebreton.gabriel@gmail.com>
Date: Tue, 26 Jan 2021 13:05:19 -0500
Subject: [PATCH 1/3] Add links to related releases and update actions to
 lastest ones

---
 .github/workflows/main.yml | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index f458b9a..e792e14 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -6,7 +6,6 @@ on:
 
 env:
   UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
-  UNITY_VERSION: 2020.1.7f1
   PROJECT_PATH: .
 
 jobs:
@@ -30,7 +29,8 @@ jobs:
       # Request manual activation file
       - name: Request manual activation file
         id: getManualLicenseFile
-        uses: webbertakken/unity-request-manual-activation-file@main
+        # https://github.com/game-ci/unity-request-activation-file/releases/
+        uses: game-ci/unity-request-manual-activation-file@v2.0-alpha-1
         with:
           unityVersion: ${{ env.UNITY_VERSION }}
       # Upload artifact (Unity_v20XX.X.XXXX.alf)
@@ -56,14 +56,15 @@ jobs:
           restore-keys: |
             Library-test-project-
             Library-
-      - uses: webbertakken/unity-test-runner@v1.7
+      # https://github.com/game-ci/unity-test-runner/releases/
+      - uses: game-ci/unity-test-runner@v2.0-alpha-2
         id: testRunner
         with:
           projectPath: ${{ env.PROJECT_PATH }}
           unityVersion: ${{ env.UNITY_VERSION }}
           testMode: all
           customParameters: "-nographics"
-      - uses: actions/upload-artifact@v1
+      - uses: actions/upload-artifact@v2
         with:
           name: Test results (all modes)
           path: ${{ steps.testRunner.outputs.artifactsPath }}
@@ -91,7 +92,8 @@ jobs:
           restore-keys: |
             Library-${{ matrix.projectPath }}-
             Library-
-      - uses: webbertakken/unity-builder@v2.0-aplha-5
+      # https://github.com/game-ci/unity-builder/releases/
+      - uses: game-ci/unity-builder@v2.0-alpha-6
         with:
           projectPath: ${{ env.PROJECT_PATH }}
           unityVersion: ${{ env.UNITY_VERSION }}

From b39741a0db381c39a69e485d172fb209216b466d Mon Sep 17 00:00:00 2001
From: Gabriel Le Breton <lebreton.gabriel@gmail.com>
Date: Tue, 26 Jan 2021 13:08:23 -0500
Subject: [PATCH 2/3] Add more targets and base artifacts on targets

---
 .github/workflows/main.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index e792e14..2f01e00 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -79,8 +79,12 @@ jobs:
       matrix:
         targetPlatform:
           - StandaloneOSX
+          - StandaloneWindows
           - StandaloneWindows64
           - StandaloneLinux64
+          - iOS
+          - Android
+          - WebGL
     steps:
       - uses: actions/checkout@v2
         with:
@@ -100,5 +104,5 @@ jobs:
           targetPlatform: ${{ matrix.targetPlatform }}
       - uses: actions/upload-artifact@v2
         with:
-          name: Build
+          name: Build-${{ matrix.targetPlatform }}
           path: build

From 87596a024eb730d623d28b4285f3c3897d77aed9 Mon Sep 17 00:00:00 2001
From: Gabriel Le Breton <lebreton.gabriel@gmail.com>
Date: Tue, 26 Jan 2021 13:51:46 -0500
Subject: [PATCH 3/3] Update main.yml

---
 .github/workflows/main.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 2f01e00..21d8b4c 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -84,7 +84,8 @@ jobs:
           - StandaloneLinux64
           - iOS
           - Android
-          - WebGL
+          # See https://github.com/game-ci/docker/issues/53 webgl will be supported in editor image v0.9
+          # - WebGL
     steps:
       - uses: actions/checkout@v2
         with: