Mirror/.github/workflows/activation.yml
MrGadget 3e52ef0deb
Fix CI (#3348)
* Update activation.ylm

* Added Semantic.yml

* Added SonarQube.yml

* Updated main.yml

* Updated main.yml

* SonarQube - container fixed

* main.yml - disabled SonarQube for now
- That's going to need a bit more work.
2023-01-09 12:14:04 +01:00

28 lines
821 B
YAML

name: Acquire Activation File
on:
workflow_dispatch: {}
jobs:
activation:
name: Request Manual Activation File 🔑
runs-on: ubuntu-latest
steps:
- name: Request Manual 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@v3
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."