Merge pull request #53 from 2024FALL-SWPP/silee1103-patch-1 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Acquire unity activation file | |
on: | |
push: | |
branches: [ main ] | |
# Unity ๋ฒ์ ๋ณ๊ฒฝ ์ ์๋ Job์ ์คํํ๋๋ก ํจ | |
# ์ต์ด ์คํ ์์๋ ์๋ ์กฐ๊ฑด์ ์ ๊ฑฐํด์ผ Action์ด ์คํ๋ฉ๋๋ค | |
# paths: | |
# - "ProjectSettings/ProjectVersion.txt" | |
env: | |
# ์ฌ์ฉํ๊ณ ์๋ Unity version | |
unityVersion: 2021.3.42f1 | |
jobs: | |
activation: | |
name: Request manual activation file ๐ | |
runs-on: ubuntu-latest | |
steps: | |
# Unity ํ์ฑํ ์์ฒญ ํ์ผ ์์ฑ | |
- name: Request manual activation file | |
id: getManualLicenseFile | |
uses: webbertakken/[email protected] | |
with: | |
unityVersion: ${{ env.unityVersion }} | |
# ์์ฒญ ํ์ผ์ Artifacts๋ก ์ ๋ก๋ | |
- name: Upload activation request file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: unity_activation_request_file | |
path: ${{ steps.getManualLicenseFile.outputs.filePath }} |