Skip to content

Commit b907031

Browse files
committed
Add manual activation workflow file
Taken from game-ci/documentation#46 (comment)
1 parent 6d1f37a commit b907031

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

Diff for: .github/workflows/manual_activation.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Acquire activation file
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
unityVersion:
6+
description: 'Unity version to use during activation request'
7+
required: true
8+
default: 2020.1.7f1
9+
jobs:
10+
activation:
11+
name: Request manual activation file 🔑
12+
runs-on: ubuntu-latest
13+
steps:
14+
# Request manual activation file
15+
- name: Request manual activation file
16+
id: getManualLicenseFile
17+
uses: webbertakken/[email protected]
18+
with:
19+
unityVersion: ${{ github.event.inputs.unityVersion }}
20+
# Upload artifact (Unity_v20XX.X.XXXX.alf)
21+
- name: Expose as artifact
22+
uses: actions/upload-artifact@v1
23+
with:
24+
name: ${{ steps.getManualLicenseFile.outputs.filePath }}
25+
path: ${{ steps.getManualLicenseFile.outputs.filePath }}

0 commit comments

Comments
 (0)