Skip to content

Instantly share code, notes, and snippets.

@aallbrig
Created February 20, 2022 04:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aallbrig/915341c99b9f73f03c922a7f94e47041 to your computer and use it in GitHub Desktop.
Save aallbrig/915341c99b9f73f03c922a7f94e47041 to your computer and use it in GitHub Desktop.
name: Acquire activation file
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
# 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 }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment