From bf52da03a0899fe66240ecaba75ce3d567b7713b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miika=20L=C3=B6nnqvist?= Date: Tue, 28 Dec 2021 13:40:31 +0100 Subject: [PATCH] Workflow for acquiring Unity activation file --- .github/workflows/activation.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/activation.yml diff --git a/.github/workflows/activation.yml b/.github/workflows/activation.yml new file mode 100644 index 00000000..c43d5bae --- /dev/null +++ b/.github/workflows/activation.yml @@ -0,0 +1,20 @@ +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 }} \ No newline at end of file