Skip to content

Commit 5b827dd

Browse files
committed
Merge branch 'release/2.0.1'
2 parents 5b76718 + 72e3b62 commit 5b827dd

File tree

7 files changed

+8012
-1389
lines changed

7 files changed

+8012
-1389
lines changed

.github/workflows/tests.yml

-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,4 @@ jobs:
2727
xcode-version: ${{ matrix.xcode-version }}
2828
2929
apple-id-password: ${{ secrets.APPLE_ID_PASSWORD }}
30-
env:
31-
SPACESHIP_SKIP_2FA_UPGRADE: 1
3230
- run: xcodebuild -version

dist/index.js

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

dist/index.js.map

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

dist/licenses.txt

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

index.mjs

+11-1
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,22 @@ async function installXcode(xcodeVersion, appleID, appleIDPassword) {
2525

2626
core.startGroup('Install Xcode');
2727

28+
await exec.exec('xcversion', ['update'], {
29+
cwd: process.env.TMPDIR,
30+
env: {
31+
...process.env,
32+
XCODE_INSTALL_USER: appleID,
33+
XCODE_INSTALL_PASSWORD: appleIDPassword,
34+
SPACESHIP_SKIP_2FA_UPGRADE: 1,
35+
}
36+
});
2837
await exec.exec('xcversion', ['install', xcodeVersion], {
2938
cwd: process.env.TMPDIR,
3039
env: {
3140
...process.env,
3241
XCODE_INSTALL_USER: appleID,
33-
XCODE_INSTALL_PASSWORD: appleIDPassword
42+
XCODE_INSTALL_PASSWORD: appleIDPassword,
43+
SPACESHIP_SKIP_2FA_UPGRADE: 1,
3444
}
3545
});
3646

0 commit comments

Comments
 (0)