Acquire activation file for 2020 #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Acquire activation file for 2020 | |
on: | |
workflow_dispatch: {} | |
jobs: | |
activation: | |
name: Request manual activation file 🔑 | |
runs-on: ubuntu-latest | |
steps: | |
# Request manual activation file | |
- name: Request manual activation file | |
id: getManualLicenseFile | |
uses: game-ci/unity-activate@v2 | |
with: | |
unityVersion: 2020.3.48f1 | |
# Upload artifact (Unity_v20XX.X.XXXX.alf) | |
- name: Expose as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.getManualLicenseFile.outputs.filePath }} | |
path: ${{ steps.getManualLicenseFile.outputs.filePath }} |