Skip to content

#5 v3 was deprecated. Using v4 #8

#5 v3 was deprecated. Using v4

#5 v3 was deprecated. Using v4 #8

Workflow file for this run

name: Developer CI/CD for testing purposes
on:
push:
branches-ignore:
- main
jobs:
build:
name: Build AR_Pool_Application
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true
# Cache
- uses: actions/cache@v3
with:
path: UnityProject/AR_Pool/Library
key: Library-${{ hashFiles('UnityProject/AR_Pool/Assets/**', 'UnityProject/AR_Pool/Packages/**', 'UnityProject/AR_Pool/ProjectSettings/**') }}
restore-keys: |
Library-
# Build
- name: Build project
uses: game-ci/unity-builder@v4
env:
UNITY_LICENSE: ${{secrets.UNITY_LICENSE}}
UNITY_EMAIL: ${{secrets.UNITY_EMAIL}}
UNITY_PASSWORD: ${{secrets.UNITY_PASSWORD}}
with:
projectPath: UnityProject/AR_Pool
targetPlatform: Android
# Output
- uses: actions/upload-artifact@v4
with :
name: Build
path: UnityProject/AR_Pool/Build