Skip to content

#5 Fixed typo. Removed typo. #6

#5 Fixed typo. Removed typo.

#5 Fixed typo. Removed typo. #6

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: UnityProject/AR_Pool/Library-${{ hashFiles('Assets/**', 'Packages/**', '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:
targetPlatform: Android
projectPath: UnityProject/AR_Pool