File tree Expand file tree Collapse file tree 14 files changed +11163
-7380
lines changed Expand file tree Collapse file tree 14 files changed +11163
-7380
lines changed Original file line number Diff line number Diff line change
1
+ name : Lint Commit Messages
2
+ on : [pull_request]
3
+
4
+ jobs :
5
+ commitlint :
6
+ runs-on : ubuntu-latest
7
+ steps :
8
+ - uses : actions/checkout@v3
9
+ with :
10
+ fetch-depth : 0
11
+ - uses : wagoid/commitlint-github-action@v5
Original file line number Diff line number Diff line change
1
+ name : Nightly Build
2
+ on :
3
+ push :
4
+ branches :
5
+ - develop
6
+ jobs :
7
+ deployNightly :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v3
11
+ - uses : actions/setup-node@v3
12
+ with :
13
+ node-version : 16
14
+ - run : HUSKY=0 npm ci
15
+ - run : npm run build
16
+ - name : Deploy nightly branch
17
+ run : sh ./publish-nightly.sh
18
+ env :
19
+ GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on : push
3
+ jobs :
4
+ test :
5
+ runs-on : ubuntu-latest
6
+ steps :
7
+ - uses : actions/checkout@v3
8
+ - uses : actions/setup-node@v3
9
+ with :
10
+ node-version : 16
11
+ - run : HUSKY=0 npm ci
12
+ - run : npm run build
13
+ - name : Release
14
+ env :
15
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
16
+ GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
17
+ 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,18 +40,33 @@ 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
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 /*
37
70
38
71
# Node.js
39
72
node_modules
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env sh
2
+ . " $( dirname -- " $0 " ) /_/husky.sh"
3
+
4
+ npx --no -- commitlint --edit
Original file line number Diff line number Diff line change
1
+ 16.17.0
Original file line number Diff line number Diff line change
1
+ {
2
+ "description" : " A simple spell check utility for use in the Unity Editor" ,
3
+ "displayName" : " Unity Simple Spellcheck" ,
4
+ "keywords" : [
5
+ " spelling" ,
6
+ " spell check" ,
7
+ " unity editor" ,
8
+ " unity textarea"
9
+ ],
10
+ "oysterVersion" : " 3.0.0" ,
11
+ "packageName" : " com.fluid.simple-spellcheck" ,
12
+ "packageScope" : " com.fluid" ,
13
+ "unityVersion" : " " ,
14
+ "author" : {
15
+ "name" : " Ash Blue" ,
16
+ "email" : " ash@clevercrowgames.com" ,
17
+ "url" : " https://twitter.com/ashbluewd"
18
+ },
19
+ "repo" : {
20
+ "gitUrl" : " https://github.com/ashblue/unity-simple-spellcheck" ,
21
+ "gitUrlNoHttp" : " github.com/ashblue/unity-simple-spellcheck"
22
+ }
23
+ }
Original file line number Diff line number Diff line change 3
3
"@semantic-release/commit-analyzer",
4
4
"@semantic-release/release-notes-generator",
5
5
"@semantic-release/changelog",
6
+ [
7
+ "@semantic-release/npm",
8
+ {
9
+ "npmPublish": false
10
+ }
11
+ ],
6
12
[
7
13
"@semantic-release/exec",
8
14
{
9
- "verifyConditionsCmd": "npm run build",
10
- "prepareCmd": "npm run build"
15
+ "publishCmd": "npm run build"
11
16
}
12
17
],
13
- "@semantic-release/git",
14
18
[
15
19
"@semantic-release/npm",
16
20
{
17
- "pkgRoot": "dist "
21
+ "pkgRoot": "Assets/com.fluid.simple-spellcheck "
18
22
}
19
23
],
20
24
[
21
- "@semantic-release/github ",
25
+ "@semantic-release/git ",
22
26
{
23
27
"assets": [
24
- {
25
- "path": "dist.zip",
26
- "label": "Package Build"
27
- }
28
+ "CHANGELOG.md",
29
+ "package.json",
30
+ "package-lock.json",
31
+ "npm-shrinkwrap.json",
32
+ "Assets/**/*"
28
33
]
29
34
}
30
- ]
35
+ ],
36
+ "@semantic-release/github"
31
37
]
32
38
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments