Skip to content

Commit 9a081e8

Browse files
unity-xcode-builder@v1.3.2
- test license step - update deps - misc formatting
1 parent 2bd0367 commit 9a081e8

6 files changed

Lines changed: 15 additions & 14 deletions

File tree

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
}
8585
}
8686
shell: pwsh
87-
- uses: buildalon/activate-unity-license@v1
87+
- uses: buildalon/activate-unity-license@development
8888
with:
8989
license: 'Personal'
9090
username: ${{ secrets.UNITY_USERNAME }}

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20070,7 +20070,7 @@ function expand(str, isTop) {
2007020070
var isOptions = m.body.indexOf(',') >= 0;
2007120071
if (!isSequence && !isOptions) {
2007220072
// {a},b}
20073-
if (m.post.match(/,.*\}/)) {
20073+
if (m.post.match(/,(?!,).*\}/)) {
2007420074
str = m.pre + '{' + m.body + escClose + m.post;
2007520075
return expand(str);
2007620076
}

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 9 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unity-xcode-builder",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "A GitHub Action to build, archive, and upload Unity exported xcode projects.",
55
"author": "buildalon",
66
"license": "MIT",
@@ -39,4 +39,4 @@
3939
"watch": "ncc build src/index.ts -o dist --source-map --license licenses.txt --watch",
4040
"clean": "npm install && shx rm -rf dist/ out/ node_modules/ && npm ci"
4141
}
42-
}
42+
}

src/xcode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ async function notarizeArchive(projectRef: XcodeProject, archivePath: string, st
741741
}
742742
}
743743

744-
async function getNotarizationLog(projectRef: XcodeProject, id: string) {
744+
async function getNotarizationLog(projectRef: XcodeProject, id: string): Promise<void> {
745745
let output = '';
746746
const notaryLogArgs = [
747747
'notarytool',

0 commit comments

Comments
 (0)