generated from 3d-group/unity-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (26 loc) · 1.09 KB
/
acquire-activation-file.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Acquire activation file
# This project uses unity-ci project (unity-ci.com) to help getting activation file and run tests automatically on push.
# unity-ci project has great documentation on what activation file is and how to use it in https://unity-ci.com/docs/github/activation
# Controls when the action will run. Workflow runs when manually triggered using the UI or API.
on:
workflow_dispatch:
inputs:
unity-version:
description: 'Unity version'
default: 2019.4.1f1
required: true
jobs:
activation:
name: Request manual activation file 🔑
runs-on: ubuntu-latest
steps:
- name: Request manual activation
id: getManualLicenseFile
uses: webbertakken/[email protected]
with:
unityVersion: ${{ github.event.inputs.unity-version }}
- name: Expose as artifact # Upload artifact (Unity_v20XX.X.XXXX.alf)
uses: actions/upload-artifact@v1
with:
name: ${{ steps.getManualLicenseFile.outputs.filePath }}
path: ${{ steps.getManualLicenseFile.outputs.filePath }}