Skip to content

Commit 72bdcac

Browse files
committed
#5 Ignoring CI/CD for now.
1 parent 9ac9685 commit 72bdcac

File tree

1 file changed

+46
-46
lines changed

1 file changed

+46
-46
lines changed
Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,54 @@
11

2-
name: Developer CI/CD for testing purposes
2+
# name: Developer CI/CD for testing purposes
33

4-
on:
5-
push:
6-
branches-ignore:
7-
- main
8-
jobs:
9-
build:
10-
name: Build AR_Pool_Application
11-
runs-on: ubuntu-latest
12-
steps:
13-
# Checkout
14-
- name: Checkout repository
15-
uses: actions/checkout@v4
16-
with:
17-
lfs: true
4+
# on:
5+
# push:
6+
# branches-ignore:
7+
# - main
8+
# jobs:
9+
# build:
10+
# name: Build AR_Pool_Application
11+
# runs-on: ubuntu-latest
12+
# steps:
13+
# # Checkout
14+
# - name: Checkout repository
15+
# uses: actions/checkout@v4
16+
# with:
17+
# lfs: true
1818

19-
# Create Library and Build folder automatically, since they are excluded in the .gitignore
20-
- name: Create Library folder
21-
run: mkdir -p UnityProject/AR_Pool/Library
19+
# # Create Library and Build folder automatically, since they are excluded in the .gitignore
20+
# - name: Create Library folder
21+
# run: mkdir -p UnityProject/AR_Pool/Library
2222

23-
# Build folder
24-
- name: Create Build folder
25-
run: mkdir -p UnityProject/AR_Pool/Build
23+
# # Build folder
24+
# - name: Create Build folder
25+
# run: mkdir -p UnityProject/AR_Pool/Build
2626

27-
# Cache
28-
- uses: actions/cache@v3
29-
with:
30-
path: UnityProject/AR_Pool/Library
31-
key: Library-${{ hashFiles('UnityProject/AR_Pool/Assets/**', 'UnityProject/AR_Pool/Packages/**', 'UnityProject/AR_Pool/ProjectSettings/**') }}
32-
restore-keys: |
33-
Library-
27+
# # Cache
28+
# - uses: actions/cache@v3
29+
# with:
30+
# path: UnityProject/AR_Pool/Library
31+
# key: Library-${{ hashFiles('UnityProject/AR_Pool/Assets/**', 'UnityProject/AR_Pool/Packages/**', 'UnityProject/AR_Pool/ProjectSettings/**') }}
32+
# restore-keys: |
33+
# Library-
3434

35-
# Build
36-
- name: Build project
37-
uses: game-ci/unity-builder@v4
38-
env:
39-
UNITY_LICENSE: ${{secrets.UNITY_LICENSE}}
40-
UNITY_EMAIL: ${{secrets.UNITY_EMAIL}}
41-
UNITY_PASSWORD: ${{secrets.UNITY_PASSWORD}}
42-
with:
43-
projectPath: UnityProject/AR_Pool
44-
targetPlatform: Android
35+
# # Build
36+
# - name: Build project
37+
# uses: game-ci/unity-builder@v4
38+
# env:
39+
# UNITY_LICENSE: ${{secrets.UNITY_LICENSE}}
40+
# UNITY_EMAIL: ${{secrets.UNITY_EMAIL}}
41+
# UNITY_PASSWORD: ${{secrets.UNITY_PASSWORD}}
42+
# with:
43+
# projectPath: UnityProject/AR_Pool
44+
# targetPlatform: Android
4545

46-
# Remove Unnecessary Video Files
47-
- name: Remove Unnecessary Video Files
48-
run: find UnityProject/AR_Pool/Library/PackageCache -type f -name "*.mp4" -delete || true
46+
# # Remove Unnecessary Video Files
47+
# - name: Remove Unnecessary Video Files
48+
# run: find UnityProject/AR_Pool/Library/PackageCache -type f -name "*.mp4" -delete || true
4949

50-
# Output
51-
- uses: actions/upload-artifact@v4
52-
with :
53-
name: Build
54-
path: UnityProject/AR_Pool/Build
50+
# # Output
51+
# - uses: actions/upload-artifact@v4
52+
# with :
53+
# name: Build
54+
# path: UnityProject/AR_Pool/Build

0 commit comments

Comments
 (0)