Mirror/.github/workflows/activation.yml
2023-12-23 11:28:59 -05:00

28 lines
804 B
YAML

name: Acquire Activation File
on:
workflow_dispatch:
jobs:
activation:
name: Acquire Activation File 🔑
runs-on: ubuntu-latest
steps:
- name: Acquire Activation File
id: getManualLicenseFile
uses: game-ci/unity-request-activation-file@v2
with:
unityVersion: 2019.4.40f1
- name: Upload License Request
uses: actions/upload-artifact@v4
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."