File tree 9 files changed +7147
-11255
lines changed
9 files changed +7147
-11255
lines changed Original file line number Diff line number Diff line change 5
5
commitlint :
6
6
runs-on : ubuntu-latest
7
7
steps :
8
- - uses : actions/checkout@v2
8
+ - uses : actions/checkout@v3
9
9
with :
10
10
fetch-depth : 0
11
- - uses : wagoid/commitlint-github-action@v3
11
+ - uses : wagoid/commitlint-github-action@v5
Original file line number Diff line number Diff line change 1
1
name : Nightly Build
2
+ permissions :
3
+ contents : write
2
4
on :
3
5
push :
4
6
branches :
7
9
deployNightly :
8
10
runs-on : ubuntu-latest
9
11
steps :
10
- - uses : actions/checkout@v2
11
- - uses : actions/setup-node@v2
12
+ - uses : actions/checkout@v3
13
+ - uses : actions/setup-node@v3
12
14
with :
13
- node-version : ' 14 '
14
- - run : npm install
15
+ node-version : 16
16
+ - run : HUSKY=0 npm ci
15
17
- run : npm run build
16
18
- name : Deploy nightly branch
17
19
run : sh ./publish-nightly.sh
Original file line number Diff line number Diff line change 1
- name : CI
1
+ name : Release
2
+
2
3
on :
3
4
push :
4
5
branches :
6
+ - main
5
7
- master
6
- pull_request :
7
- branches :
8
- - develop
9
- - master
8
+
9
+ permissions :
10
+ contents : read
11
+
10
12
jobs :
11
- test :
13
+ release :
14
+ name : Release
12
15
runs-on : ubuntu-latest
16
+ permissions :
17
+ contents : write
18
+ issues : write
19
+ pull-requests : write
20
+ id-token : write
13
21
steps :
14
- - uses : actions/checkout@v3
15
- - uses : actions/setup-node@v3
22
+ - name : Checkout
23
+ uses : actions/checkout@v3
24
+ with :
25
+ fetch-depth : 0
26
+ persist-credentials : false
27
+ - name : Setup Node.js
28
+ uses : actions/setup-node@v3
16
29
with :
17
- node-version : ' 14'
18
- - run : npm install
19
- - run : npm run build
30
+ node-version : 16
31
+ - name : Install dependencies
32
+ run : HUSKY=0 npm ci && npm run build
33
+ - name : Verify the integrity of provenance attestations and registry signatures for installed dependencies
34
+ run : npm audit signatures
20
35
- name : Release
21
36
env :
37
+ GH_TOKEN : ${{ secrets.GH_TOKEN }}
38
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
22
39
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
23
- GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24
- run : npm run semantic-release
40
+ run : npm run semantic-release
Original file line number Diff line number Diff line change 1
- [Ll ]ibrary /
2
- [Tt ]emp /
3
- [Oo ]bj /
4
- [Bb ]uild /
5
- [Bb ]uilds /
6
- Assets /AssetStoreTools *
1
+ /[Ll ]ibrary /
2
+ /[Tt ]emp /
3
+ /[Oo ]bj /
4
+ /[Bb ]uild /
5
+ /[Bb ]uilds /
6
+ /[Ll ]ogs /
7
+ /[Uu ]ser [Ss ]ettings /
8
+ CodeCoverage /
9
+ UIElementsSchema /
10
+
11
+ # MemoryCaptures can get excessive in size.
12
+ # They also could contain extremely sensitive data
13
+ /[Mm ]emoryCaptures /
14
+
15
+ # Recordings can get excessive in size
16
+ /[Rr ]ecordings /
17
+
18
+ /[Aa ]ssets /AssetStoreTools *
19
+
20
+ # Autogenerated Jetbrains Rider plugin
21
+ /[Aa ]ssets /Plugins /Editor /JetBrains *
7
22
8
23
# Visual Studio cache directory
9
- /.vs /
24
+ .vs /
25
+
26
+ # Gradle cache directory
27
+ .gradle /
10
28
11
29
# Autogenerated VS/MD/Consulo solution and project files
12
30
ExportedObj /
@@ -22,23 +40,35 @@ ExportedObj/
22
40
* .booproj
23
41
* .svd
24
42
* .pdb
43
+ * .mdb
44
+ * .opendb
45
+ * .VC.db
25
46
26
47
# Unity3D generated meta files
27
48
* .pidb.meta
28
49
* .pdb.meta
50
+ * .mdb.meta
29
51
30
52
# Unity3D Generated File On Crash Reports
31
53
sysinfo.txt
32
54
33
55
# Builds
34
56
* .apk
57
+ * .aab
35
58
* .unitypackage
36
- /Logs /Packages-Update.log
37
- Logs /
38
- CodeCoverage /
59
+ * .app
60
+
61
+ # Crashlytics generated file
62
+ crashlytics-build.properties
63
+
64
+ # Packed Addressables
65
+ /[Aa ]ssets /[Aa ]ddressable [Aa ]ssets [Dd ]ata /* /* .bin *
66
+
67
+ # Temporary auto-generated Android Assets
68
+ /[Aa ]ssets /[Ss ]treamingAssets /aa.meta
69
+ /[Aa ]ssets /[Ss ]treamingAssets /aa /*
39
70
40
71
# Node.js
41
72
node_modules
42
73
dist
43
74
dist.zip
44
- UserSettings /
Original file line number Diff line number Diff line change 1
- #! /bin/sh
2
- . " $( dirname " $0 " ) /_/husky.sh"
1
+ #! /usr/ bin/env sh
2
+ . " $( dirname -- " $0 " ) /_/husky.sh"
3
3
4
- npx --no-install commitlint --edit
4
+ npx --no -- commitlint --edit ${1}
Original file line number Diff line number Diff line change 1
- 14.16 .0
1
+ 16.17 .0
Original file line number Diff line number Diff line change 6
6
" behavior tree" ,
7
7
" builder pattern"
8
8
],
9
- "oysterVersion" : " 2.1.0 " ,
9
+ "oysterVersion" : " 3.0.2 " ,
10
10
"packageName" : " com.fluid.behavior-tree" ,
11
11
"packageScope" : " com.fluid" ,
12
12
"unityVersion" : " 2018.1" ,
You can’t perform that action at this time.
0 commit comments