From ec8ac5a86499d51c7df41974a3e2852d13eeda62 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Sun, 8 May 2022 12:00:21 +0100 Subject: [PATCH] [github actions] Add Unity activation --- .github/workflows/activate-unity.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/activate-unity.yml diff --git a/.github/workflows/activate-unity.yml b/.github/workflows/activate-unity.yml new file mode 100644 index 0000000..0827bbd --- /dev/null +++ b/.github/workflows/activate-unity.yml @@ -0,0 +1,18 @@ +name: Acquire activation file +on: + workflow_dispatch: {} +jobs: + activation: + name: Request manual activation file 🔑 + runs-on: ubuntu-latest + steps: + # Request manual activation file + - name: Request manual activation file + id: getManualLicenseFile + uses: game-ci/unity-request-activation-file@v2 + # Upload artifact (Unity_v20XX.X.XXXX.alf) + - name: Expose as artifact + uses: actions/upload-artifact@v2 + with: + name: ${{ steps.getManualLicenseFile.outputs.filePath }} + path: ${{ steps.getManualLicenseFile.outputs.filePath }}