Skip to content

Commit

Permalink
Fix activation method (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
RyodoTanaka authored Jul 11, 2023
1 parent efce2d7 commit 78142b0
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 66 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/activation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Acquire activation file from 2020 to 2022 LTS

on:
workflow_dispatch: {}

jobs:
activation2020:
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-request-activation-file@v2
with:
unityVersion: 2020.3.48f1
# Upload artifact (Unity_v20XX.X.XXXX.alf)
- name: Expose as artifact
uses: actions/upload-artifact@v2
with:
name: ${{ steps.getManualLicenseFile.outputs.filePath }}
path: ${{ steps.getManualLicenseFile.outputs.filePath }}
activation2021:
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-request-activation-file@v2
with:
unityVersion: 2021.3.28f1
# Upload artifact (Unity_v20XX.X.XXXX.alf)
- name: Expose as artifact
uses: actions/upload-artifact@v2
with:
name: ${{ steps.getManualLicenseFile.outputs.filePath }}
path: ${{ steps.getManualLicenseFile.outputs.filePath }}
activation2022:
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-request-activation-file@v2
with:
unityVersion: 2022.3.4f1
# Upload artifact (Unity_v20XX.X.XXXX.alf)
- name: Expose as artifact
uses: actions/upload-artifact@v2
with:
name: ${{ steps.getManualLicenseFile.outputs.filePath }}
path: ${{ steps.getManualLicenseFile.outputs.filePath }}
22 changes: 0 additions & 22 deletions .github/workflows/activation2020.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/activation2021.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/activation2022.yml

This file was deleted.

0 comments on commit 78142b0

Please sign in to comment.