Skip to content
This repository was archived by the owner on May 24, 2025. It is now read-only.

Commit 24e52fa

Browse files
authored
Enable Saint Alessia (#10)
1 parent ffb3646 commit 24e52fa

25 files changed

Lines changed: 3552 additions & 144 deletions
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: Build and Release Unity Game
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
build:
10+
name: Build ${{ matrix.targetPlatform }}
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
targetPlatform:
15+
- StandaloneWindows64
16+
- StandaloneLinux64
17+
- StandaloneOSX
18+
19+
steps:
20+
- name: Checkout repository
21+
uses: actions/checkout@v4
22+
23+
- name: Cache Unity Library
24+
uses: actions/cache@v3
25+
with:
26+
path: Library
27+
key: Library-${{ matrix.targetPlatform }}
28+
29+
- name: Build with Unity
30+
uses: game-ci/unity-builder@v2
31+
with:
32+
unityVersion: 2022.3.4f1
33+
targetPlatform: ${{ matrix.targetPlatform }}
34+
env:
35+
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
36+
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
37+
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
38+
39+
- name: Archive build into ZIP
40+
run: |
41+
cd build/${{ matrix.targetPlatform }}
42+
zip -r ../../Build-${{ matrix.targetPlatform }}.zip .
43+
44+
- name: Upload zip artifact
45+
uses: actions/upload-artifact@v3
46+
with:
47+
name: Build-${{ matrix.targetPlatform }}.zip
48+
path: Build-${{ matrix.targetPlatform }}.zip
49+
50+
release:
51+
name: Create GitHub Release
52+
needs: build
53+
runs-on: ubuntu-latest
54+
steps:
55+
- name: Download all zipped build artifacts
56+
uses: actions/download-artifact@v3
57+
with:
58+
path: builds
59+
60+
- name: Create GitHub release with ZIPs
61+
uses: softprops/action-gh-release@v1
62+
with:
63+
files: |
64+
builds/Build-StandaloneWindows64.zip
65+
builds/Build-StandaloneLinux64.zip
66+
builds/Build-StandaloneOSX.zip
67+
env:
68+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Assets/Plugins/Newtonsoft.Json.dll

0 Bytes
Binary file not shown.

Assets/Plugins/TalesOfTribute.deps.json

Lines changed: 129 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"runtimeTarget": {
3-
"name": ".NETStandard,Version=v2.1/",
3+
"name": ".NETStandard,Version=v2.1/win-x64",
44
"signature": ""
55
},
66
"compilationOptions": {},
77
"targets": {
88
".NETStandard,Version=v2.1": {},
9-
".NETStandard,Version=v2.1/": {
9+
".NETStandard,Version=v2.1/win-x64": {
1010
"TalesOfTribute/1.0.0": {
1111
"dependencies": {
1212
"Newtonsoft.Json": "13.0.2"
@@ -38,5 +38,132 @@
3838
"path": "newtonsoft.json/13.0.2",
3939
"hashPath": "newtonsoft.json.13.0.2.nupkg.sha512"
4040
}
41+
},
42+
"runtimes": {
43+
"win-x64": [
44+
"win",
45+
"any",
46+
"base"
47+
],
48+
"win-x64-aot": [
49+
"win-aot",
50+
"win-x64",
51+
"win",
52+
"aot",
53+
"any",
54+
"base"
55+
],
56+
"win10-x64": [
57+
"win10",
58+
"win81-x64",
59+
"win81",
60+
"win8-x64",
61+
"win8",
62+
"win7-x64",
63+
"win7",
64+
"win-x64",
65+
"win",
66+
"any",
67+
"base"
68+
],
69+
"win10-x64-aot": [
70+
"win10-aot",
71+
"win10-x64",
72+
"win10",
73+
"win81-x64-aot",
74+
"win81-aot",
75+
"win81-x64",
76+
"win81",
77+
"win8-x64-aot",
78+
"win8-aot",
79+
"win8-x64",
80+
"win8",
81+
"win7-x64-aot",
82+
"win7-aot",
83+
"win7-x64",
84+
"win7",
85+
"win-x64-aot",
86+
"win-aot",
87+
"win-x64",
88+
"win",
89+
"aot",
90+
"any",
91+
"base"
92+
],
93+
"win7-x64": [
94+
"win7",
95+
"win-x64",
96+
"win",
97+
"any",
98+
"base"
99+
],
100+
"win7-x64-aot": [
101+
"win7-aot",
102+
"win7-x64",
103+
"win7",
104+
"win-x64-aot",
105+
"win-aot",
106+
"win-x64",
107+
"win",
108+
"aot",
109+
"any",
110+
"base"
111+
],
112+
"win8-x64": [
113+
"win8",
114+
"win7-x64",
115+
"win7",
116+
"win-x64",
117+
"win",
118+
"any",
119+
"base"
120+
],
121+
"win8-x64-aot": [
122+
"win8-aot",
123+
"win8-x64",
124+
"win8",
125+
"win7-x64-aot",
126+
"win7-aot",
127+
"win7-x64",
128+
"win7",
129+
"win-x64-aot",
130+
"win-aot",
131+
"win-x64",
132+
"win",
133+
"aot",
134+
"any",
135+
"base"
136+
],
137+
"win81-x64": [
138+
"win81",
139+
"win8-x64",
140+
"win8",
141+
"win7-x64",
142+
"win7",
143+
"win-x64",
144+
"win",
145+
"any",
146+
"base"
147+
],
148+
"win81-x64-aot": [
149+
"win81-aot",
150+
"win81-x64",
151+
"win81",
152+
"win8-x64-aot",
153+
"win8-aot",
154+
"win8-x64",
155+
"win8",
156+
"win7-x64-aot",
157+
"win7-aot",
158+
"win7-x64",
159+
"win7",
160+
"win-x64-aot",
161+
"win-aot",
162+
"win-x64",
163+
"win",
164+
"aot",
165+
"any",
166+
"base"
167+
]
41168
}
42169
}

Assets/Plugins/TalesOfTribute.dll

-512 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)