Skip to content

Commit

Permalink
Fix/ci (#31)
Browse files Browse the repository at this point in the history
* Update acrivation mehtod

* Update activation flow for 2020, 2021, 2022
  • Loading branch information
RyodoTanaka authored Jul 11, 2023
1 parent 54e923f commit efce2d7
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 22 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/activation.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/activation2020.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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-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 }}
22 changes: 22 additions & 0 deletions .github/workflows/activation2021.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Acquire activation file for 2021

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-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 }}
22 changes: 22 additions & 0 deletions .github/workflows/activation2022.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Acquire activation file for 2022

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-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 }}

0 comments on commit efce2d7

Please sign in to comment.