Mirror/.github/workflows/activation.yml

28 lines
821 B
YAML
Raw Normal View History

name: Acquire Activation File
2022-12-05 13:35:06 +00:00
on:
workflow_dispatch: {}
2022-12-05 13:35:06 +00:00
jobs:
activation:
name: Request Manual Activation File 🔑
2022-12-05 13:35:06 +00:00
runs-on: ubuntu-latest
2022-12-05 13:35:06 +00:00
steps:
- name: Request Manual 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."