Mirror/.github/workflows/activation.yml

28 lines
804 B
YAML
Raw Normal View History

name: Acquire Activation File
2022-12-05 13:35:06 +00:00
on:
2023-01-20 07:31:13 +00:00
workflow_dispatch:
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
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
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 }}
- 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."