Skip to content

Commit 0f1f14e

Browse files
committed
Merge branch 'release/1.1.0'
2 parents acd3d08 + d5077f5 commit 0f1f14e

File tree

168 files changed

+948
-11008
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

168 files changed

+948
-11008
lines changed

.github/workflows/lint.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Lint
2+
on: [push]
3+
jobs:
4+
run:
5+
name: Run
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@master
10+
11+
- name: Set Node.js 12.x
12+
uses: actions/setup-node@master
13+
with:
14+
node-version: '12.x'
15+
16+
- name: npm install
17+
run: npm install
18+
19+
- name: Lint
20+
run: npm run format-check

.github/workflows/workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [macOS-latest]
10-
xcode-version: ["10.0", "11.0", "11.2.1"]
10+
xcode-version: ["10.0", "11.0", "11.1", "11.2.1"]
1111
steps:
1212
- uses: actions/checkout@v1
1313
- name: Setup Xcode

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ Basic:
1717
```yaml
1818
steps:
1919
- uses: actions/checkout@master
20-
- uses: sinoru/actions-setup-xcode@master
20+
- uses: sinoru/actions-setup-xcode@v1.1
2121
with:
2222
xcode-version: '11.2.1' # Exact version of a Xcode version to use
2323
apple-id: '[email protected]' # Apple ID to download from Apple Developer when Xcode not available in local
2424
apple-id-password: ${{ secrets.APPLE_ID_PASSWORD }}
25-
- run: xcodebuild -h
25+
- run: fastlane scan
2626
```
2727
2828
# License

lib/installer.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
"use strict";
22
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
34
return new (P || (P = Promise))(function (resolve, reject) {
45
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
56
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6-
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
7+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
78
step((generator = generator.apply(thisArg, _arguments || [])).next());
89
});
910
};
@@ -33,8 +34,8 @@ function installXcode(version, appleID, appleIDPassword) {
3334
if (!appleIDPassword) {
3435
throw new Error(`apple-id-password is required to download Xcode.`);
3536
}
36-
yield exec.exec('xcversion', ['install', version,], {
37-
env: Object.assign({}, process.env, { XCODE_INSTALL_USER: appleID, XCODE_INSTALL_PASSWORD: appleIDPassword })
37+
yield exec.exec('xcversion', ['install', version], {
38+
env: Object.assign(Object.assign({}, process.env), { XCODE_INSTALL_USER: appleID, XCODE_INSTALL_PASSWORD: appleIDPassword })
3839
});
3940
yield exec.exec('xcversion', ['select', version]);
4041
}

lib/setup-xcode.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
"use strict";
22
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
34
return new (P || (P = Promise))(function (resolve, reject) {
45
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
56
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6-
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
7+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
78
step((generator = generator.apply(thisArg, _arguments || [])).next());
89
});
910
};

node_modules/.bin/uuid

-15
This file was deleted.

node_modules/@actions/core/LICENSE.md

-7
This file was deleted.

node_modules/@actions/core/README.md

+81-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/command.d.ts

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/command.js

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/command.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/core.d.ts

+44-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)