Skip to content

Commit

Permalink
Merge branch 'release/2.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
sinoru committed Aug 3, 2021
2 parents 5b76718 + 72e3b62 commit 5b827dd
Show file tree
Hide file tree
Showing 7 changed files with 8,012 additions and 1,389 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,4 @@ jobs:
xcode-version: ${{ matrix.xcode-version }}
apple-id: [email protected]
apple-id-password: ${{ secrets.APPLE_ID_PASSWORD }}
env:
SPACESHIP_SKIP_2FA_UPGRADE: 1
- run: xcodebuild -version
483 changes: 350 additions & 133 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions dist/licenses.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,22 @@ async function installXcode(xcodeVersion, appleID, appleIDPassword) {

core.startGroup('Install Xcode');

await exec.exec('xcversion', ['update'], {
cwd: process.env.TMPDIR,
env: {
...process.env,
XCODE_INSTALL_USER: appleID,
XCODE_INSTALL_PASSWORD: appleIDPassword,
SPACESHIP_SKIP_2FA_UPGRADE: 1,
}
});
await exec.exec('xcversion', ['install', xcodeVersion], {
cwd: process.env.TMPDIR,
env: {
...process.env,
XCODE_INSTALL_USER: appleID,
XCODE_INSTALL_PASSWORD: appleIDPassword
XCODE_INSTALL_PASSWORD: appleIDPassword,
SPACESHIP_SKIP_2FA_UPGRADE: 1,
}
});

Expand Down
Loading

0 comments on commit 5b827dd

Please sign in to comment.