Skip to content

Commit c2a49ee

Browse files
committed
Test the action
1 parent fe6d0ae commit c2a49ee

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: 😎 Actions
2+
on: [push]
3+
4+
jobs:
5+
requestManualActivationFile:
6+
name: Request manual activation file 🔑
7+
runs-on: ubuntu-latest
8+
steps:
9+
# Checkout repository (required to test local actions)
10+
- name: Checkout repository
11+
uses: actions/checkout@v1
12+
13+
# Request manual activation file
14+
- name: Request manual activation file
15+
uses: ./
16+
id: getManualLicenseFile
17+
18+
# Upload artifact (Unity_v20XX.X.XXXX.alf)
19+
- name: Expose as artifact
20+
uses: actions/upload-artifact@v1
21+
with:
22+
name: ${{ steps.getManualLicenseFile.outputs.filePath }}
23+
path: ${{ steps.getManualLicenseFile.outputs.filePath }}

0 commit comments

Comments
 (0)