From 3af23794f4f0c416fc7b84cadd0a275603716c35 Mon Sep 17 00:00:00 2001 From: Ben Greenier Date: Mon, 19 Jul 2021 11:08:44 -0700 Subject: [PATCH 1/2] =?UTF-8?q?fix(activation):=20Work=20around=20GH=20dis?= =?UTF-8?q?covery=20=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/activation.yml | 36 -------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/activation.yml diff --git a/.github/workflows/activation.yml b/.github/workflows/activation.yml deleted file mode 100644 index 833e124..0000000 --- a/.github/workflows/activation.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Acquire activation file -on: - workflow_dispatch: {} -jobs: - activation: - name: Request manual activation file 🔑 - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: get unityVersion - id: unityVersion - uses: notiz-dev/github-action-json-property@release - with: - path: 'package.json' - prop_path: 'unity' - - - name: get unityReleaseVersion - id: unityReleaseVersion - uses: notiz-dev/github-action-json-property@release - with: - path: 'package.json' - prop_path: 'unityRelease' - - - name: Request manual activation file - id: getManualLicenseFile - uses: game-ci/unity-request-activation-file@v2 - with: - unityVersion: ${{steps.unityVersion.outputs.prop}}.${{steps.unityReleaseVersion.outputs.prop}} - - # 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 }} From ecc384517af177aa728d2ea15b427c9ca0bf9a03 Mon Sep 17 00:00:00 2001 From: Ben Greenier Date: Mon, 19 Jul 2021 11:09:53 -0700 Subject: [PATCH 2/2] fix(activation): Re-add workflow --- .github/workflows/activation.yml | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 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 0000000..833e124 --- /dev/null +++ b/.github/workflows/activation.yml @@ -0,0 +1,36 @@ +name: Acquire activation file +on: + workflow_dispatch: {} +jobs: + activation: + name: Request manual activation file 🔑 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: get unityVersion + id: unityVersion + uses: notiz-dev/github-action-json-property@release + with: + path: 'package.json' + prop_path: 'unity' + + - name: get unityReleaseVersion + id: unityReleaseVersion + uses: notiz-dev/github-action-json-property@release + with: + path: 'package.json' + prop_path: 'unityRelease' + + - name: Request manual activation file + id: getManualLicenseFile + uses: game-ci/unity-request-activation-file@v2 + with: + unityVersion: ${{steps.unityVersion.outputs.prop}}.${{steps.unityReleaseVersion.outputs.prop}} + + # 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 }}