[BUILD] NDM 중간발표 최종빌드 #12
This file contains hidden or 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: GameCI Template 🎮 | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| env: | |
| UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
| UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
| UNITY_PASSWORD: ${{ secrets.UNITY_PW }} | |
| jobs: | |
| checkLicense: | |
| name: Check for the Unity license ☑️ | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Fail - No license ☠️ | |
| if: ${{ !startsWith(env.UNITY_LICENSE, '<') }} | |
| run: exit 1 | |
| buildWebGL: | |
| name: Build WebGL 🔨 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Restore Library cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: Library | |
| key: Library-build-WebGL | |
| restore-keys: | | |
| Library-build- | |
| Library- | |
| - name: Build WebGL 🛠 | |
| uses: game-ci/unity-builder@v4 | |
| with: | |
| targetPlatform: WebGL | |
| projectPath: ./DateWithKing | |
| - name: Save Build on build/WebGL folder 💾 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: build-WebGL | |
| path: build/WebGL | |
| deployPages: | |
| needs: buildWebGL | |
| name: Deploy to Github Pages 🚀 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: build-WebGL | |
| path: build | |
| - name: Deploy 🚀 | |
| uses: JamesIves/[email protected] | |
| with: | |
| branch: gh-pages | |
| folder: build/WebGL |