2023-01-09 11:14:04 +00:00
|
|
|
name: Acquire Activation File
|
|
|
|
|
2022-12-05 13:35:06 +00:00
|
|
|
on:
|
2023-01-20 07:31:13 +00:00
|
|
|
workflow_dispatch:
|
2023-01-09 11:14:04 +00:00
|
|
|
|
2022-12-05 13:35:06 +00:00
|
|
|
jobs:
|
|
|
|
activation:
|
2023-01-20 07:31:13 +00:00
|
|
|
name: Acquire Activation File 🔑
|
2022-12-05 13:35:06 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-01-09 11:14:04 +00:00
|
|
|
|
2022-12-05 13:35:06 +00:00
|
|
|
steps:
|
2023-01-20 07:31:13 +00:00
|
|
|
- name: Acquire Activation File
|
2022-12-05 13:35:06 +00:00
|
|
|
id: getManualLicenseFile
|
|
|
|
uses: game-ci/unity-request-activation-file@v2
|
2023-01-09 11:14:04 +00:00
|
|
|
with:
|
|
|
|
unityVersion: 2019.4.40f1
|
|
|
|
|
|
|
|
- name: Upload License Request
|
|
|
|
uses: actions/upload-artifact@v3
|
2022-12-05 13:35:06 +00:00
|
|
|
with:
|
|
|
|
name: ${{ steps.getManualLicenseFile.outputs.filePath }}
|
|
|
|
path: ${{ steps.getManualLicenseFile.outputs.filePath }}
|
2023-01-09 11:14:04 +00:00
|
|
|
|
|
|
|
- name: Next Steps
|
|
|
|
run: |
|
|
|
|
echo "Upload the alf file to https://license.unity3d.com/manual to get a ulf license file."
|
|
|
|
echo "Unzip and open the ulf license in Notepad and paste into secret called UNITY_LICENSE."
|