[GH-ISSUE #208] Archiving app fails every time #66

Closed
opened 2026-03-04 00:23:33 +03:00 by kerem · 11 comments
Owner

Originally created by @btglr on GitHub (Jun 2, 2022).
Original GitHub issue: https://github.com/SignTools/SignTools/issues/208

I tried basic troubleshooting first

Describe the bug

Signing job errors out when archiving.

Expected behavior

Signing job successfully finishes.

Logs

Signing
Obtaining provisioning profile...
Archiving app...
xcode_archive errored, retrying
xcode_archive errored, retrying
xcode_archive errored, retrying
Traceback (most recent call last):
  File "/Users/runner/work/SignTools-CI/SignTools-CI/util.py", line 27, in run_process
    result = subprocess.run(cmd, capture_output=capture, check=check, env=env, cwd=cwd, timeout=timeout)
  File "/usr/local/Cellar/python@3.9/3.9.13_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/subprocess.py", line 528, in run
    raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '('xcodebuild', '-allowProvisioningUpdates', '-project', '/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpac__o323/SimpleApp/SimpleApp.xcodeproj', '-scheme', 'SimpleApp', 'clean', 'archive', '-archivePath', '/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpac__o323/SimpleApp/archive.xcarchive')' returned non-zero exit status 65.

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/Users/runner/work/SignTools-CI/SignTools-CI/sign.py", line 388, in <module>
    run()
  File "/Users/runner/work/SignTools-CI/SignTools-CI/sign.py", line 337, in run
    Signer(
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 620, in sign
    jobs[component] = self.__sign_primary(component, tmpdir, data)
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 284, in __sign_primary
    xcode_archive(simple_app_proj, "SimpleApp", archive)
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 68, in xcode_archive
    return exec_retry("xcode_archive", lambda: _xcode_archive(project_dir, scheme_name, archive))
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 61, in exec_retry
    raise last_error
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 53, in exec_retry
    return func()
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 68, in <lambda>
    return exec_retry("xcode_archive", lambda: _xcode_archive(project_dir, scheme_name, archive))
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 74, in _xcode_archive
    return run_process(
  File "/Users/runner/work/SignTools-CI/SignTools-CI/util.py", line 29, in run_process
    raise (
Exception: {'stdout': 'Command line invocation:\n    /Applications/Xcode_12.5.1.app/Contents/Developer/usr/bin/xcodebuild -allowProvisioningUpdates -project /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpac__o323/SimpleApp/SimpleApp.xcodeproj -scheme SimpleApp clean archive -archivePath /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpac__o323/SimpleApp/archive.xcarchive\n\nUser defaults from command line:\n    IDEArchivePathOverride = /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpac__o323/SimpleApp/archive.xcarchive\n    IDEPackageSupportUseBuiltinSCM = YES\n\nnote: Using new build system\nnote: Building targets in parallel\nnote: Build preparation complete\n\n** CLEAN SUCCEEDED **\n\nnote: Using new build system\nnote: Building targets in parallel\nnote: Planning build\nnote: Analyzing workspace\nnote: Constructing build description\nnote: Build preparation complete\nerror: No account for team "9FS5C6BF2T". Add a new account in the Accounts preference pane or verify that your accounts have valid credentials. (in target \'SimpleApp\' from project \'SimpleApp\')\nerror: No profiles for \'mv8.pb5v6x3.bf5o8bzx.ShareExtension\' were found: Xcode couldn\'t find any iOS App Development provisioning profiles matching \'mv8.pb5v6x3.bf5o8bzx.ShareExtension\'. (in target \'SimpleApp\' from project \'SimpleApp\')', 'stderr': '2022-06-02 14:27:27.751 xcodebuild[3128:18335] CFURLRequestSetHTTPCookieStorageAcceptPolicy_block_invoke: no longer implemented and should not be called\n** ARCHIVE FAILED **'}
==============================================
Uploading screenshot...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 1170k    0   133  100 1170k    117  1033k  0:00:01  0:00:01 --:--:-- 1036k

100 1170k    0   133  100 1170k    117  1033k  0:00:01  0:00:01 --:--:-- 1036k
=========================

Uploaded 1 file, 1 198 934 bytes

wget https://bashupload.com/7DL8Z/test.jpg

=========================

==============================================
Cleaning up...
Error: Process completed with exit code 1.

System configuration

Additional context

I feel like I'm doing something wrong but I don't know what. The error log mentions a team/missing account.

Originally created by @btglr on GitHub (Jun 2, 2022). Original GitHub issue: https://github.com/SignTools/SignTools/issues/208 **I tried basic troubleshooting first** - [x] Updated **both** [SignTools](https://github.com/SignTools/SignTools) **and** the builder ([SignTools-CI](https://github.com/SignTools/SignTools-CI) or [SignTools-Builder](https://github.com/SignTools/SignTools-Builder)) to the latest version - [x] Read through the [FAQ page](https://github.com/SignTools/SignTools/blob/master/FAQ.md) **Describe the bug** Signing job errors out when archiving. **Expected behavior** Signing job successfully finishes. **Logs** ``` Signing Obtaining provisioning profile... Archiving app... xcode_archive errored, retrying xcode_archive errored, retrying xcode_archive errored, retrying Traceback (most recent call last): File "/Users/runner/work/SignTools-CI/SignTools-CI/util.py", line 27, in run_process result = subprocess.run(cmd, capture_output=capture, check=check, env=env, cwd=cwd, timeout=timeout) File "/usr/local/Cellar/python@3.9/3.9.13_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/subprocess.py", line 528, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '('xcodebuild', '-allowProvisioningUpdates', '-project', '/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpac__o323/SimpleApp/SimpleApp.xcodeproj', '-scheme', 'SimpleApp', 'clean', 'archive', '-archivePath', '/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpac__o323/SimpleApp/archive.xcarchive')' returned non-zero exit status 65. The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/Users/runner/work/SignTools-CI/SignTools-CI/sign.py", line 388, in <module> run() File "/Users/runner/work/SignTools-CI/SignTools-CI/sign.py", line 337, in run Signer( File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 620, in sign jobs[component] = self.__sign_primary(component, tmpdir, data) File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 284, in __sign_primary xcode_archive(simple_app_proj, "SimpleApp", archive) File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 68, in xcode_archive return exec_retry("xcode_archive", lambda: _xcode_archive(project_dir, scheme_name, archive)) File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 61, in exec_retry raise last_error File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 53, in exec_retry return func() File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 68, in <lambda> return exec_retry("xcode_archive", lambda: _xcode_archive(project_dir, scheme_name, archive)) File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 74, in _xcode_archive return run_process( File "/Users/runner/work/SignTools-CI/SignTools-CI/util.py", line 29, in run_process raise ( Exception: {'stdout': 'Command line invocation:\n /Applications/Xcode_12.5.1.app/Contents/Developer/usr/bin/xcodebuild -allowProvisioningUpdates -project /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpac__o323/SimpleApp/SimpleApp.xcodeproj -scheme SimpleApp clean archive -archivePath /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpac__o323/SimpleApp/archive.xcarchive\n\nUser defaults from command line:\n IDEArchivePathOverride = /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpac__o323/SimpleApp/archive.xcarchive\n IDEPackageSupportUseBuiltinSCM = YES\n\nnote: Using new build system\nnote: Building targets in parallel\nnote: Build preparation complete\n\n** CLEAN SUCCEEDED **\n\nnote: Using new build system\nnote: Building targets in parallel\nnote: Planning build\nnote: Analyzing workspace\nnote: Constructing build description\nnote: Build preparation complete\nerror: No account for team "9FS5C6BF2T". Add a new account in the Accounts preference pane or verify that your accounts have valid credentials. (in target \'SimpleApp\' from project \'SimpleApp\')\nerror: No profiles for \'mv8.pb5v6x3.bf5o8bzx.ShareExtension\' were found: Xcode couldn\'t find any iOS App Development provisioning profiles matching \'mv8.pb5v6x3.bf5o8bzx.ShareExtension\'. (in target \'SimpleApp\' from project \'SimpleApp\')', 'stderr': '2022-06-02 14:27:27.751 xcodebuild[3128:18335] CFURLRequestSetHTTPCookieStorageAcceptPolicy_block_invoke: no longer implemented and should not be called\n** ARCHIVE FAILED **'} ============================================== Uploading screenshot... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 1170k 0 133 100 1170k 117 1033k 0:00:01 0:00:01 --:--:-- 1036k 100 1170k 0 133 100 1170k 117 1033k 0:00:01 0:00:01 --:--:-- 1036k ========================= Uploaded 1 file, 1 198 934 bytes wget https://bashupload.com/7DL8Z/test.jpg ========================= ============================================== Cleaning up... Error: Process completed with exit code 1. ``` **System configuration** - SignTools version: 2.5.16 - Installation type: server - Builder type: SignTools-CI - Builder version: Commit https://github.com/SignTools/SignTools-CI/commit/2f3ffe4d8c4f2602af31de063081f1e2c2874193 **Additional context** I feel like I'm doing something wrong but I don't know what. The error log mentions a team/missing account.
kerem 2026-03-04 00:23:33 +03:00
  • closed this issue
  • added the
    bug
    label
Author
Owner

@ViRb3 commented on GitHub (Jun 2, 2022):

Are you using a free, personal ($99), or business development account?

<!-- gh-comment-id:1144951338 --> @ViRb3 commented on GitHub (Jun 2, 2022): Are you using a free, personal ($99), or business development account?
Author
Owner

@btglr commented on GitHub (Jun 2, 2022):

I'm using a personal developer account. Is that not enough?

<!-- gh-comment-id:1144952830 --> @btglr commented on GitHub (Jun 2, 2022): I'm using a personal developer account. Is that not enough?
Author
Owner

@ViRb3 commented on GitHub (Jun 2, 2022):

Personal developer account is exactly what you need, it should definitely work. I just tested with mine and it signed right away. Is there anything special about your account? Is it maybe a part of a business account? Could you please try signing an app known to work, just so we can rule out the app being an issue? Try: https://taurine.app/#download

<!-- gh-comment-id:1144958073 --> @ViRb3 commented on GitHub (Jun 2, 2022): Personal developer account is exactly what you need, it should definitely work. I just tested with mine and it signed right away. Is there anything special about your account? Is it maybe a part of a business account? Could you please try signing an app known to work, just so we can rule out the app being an issue? Try: https://taurine.app/#download
Author
Owner

@btglr commented on GitHub (Jun 2, 2022):

Signing
Obtaining provisioning profile...
Archiving app...
xcode_archive errored, retrying
xcode_archive errored, retrying
xcode_archive errored, retrying
Traceback (most recent call last):
  File "/Users/runner/work/SignTools-CI/SignTools-CI/util.py", line 27, in run_process
    result = subprocess.run(cmd, capture_output=capture, check=check, env=env, cwd=cwd, timeout=timeout)
  File "/usr/local/Cellar/python@3.9/3.9.13_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/subprocess.py", line 528, in run
    raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '('xcodebuild', '-allowProvisioningUpdates', '-project', '/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/SimpleApp.xcodeproj', '-scheme', 'SimpleApp', 'clean', 'archive', '-archivePath', '/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/archive.xcarchive')' returned non-zero exit status 65.

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/Users/runner/work/SignTools-CI/SignTools-CI/sign.py", line 388, in <module>
    run()
  File "/Users/runner/work/SignTools-CI/SignTools-CI/sign.py", line 337, in run
    Signer(
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 620, in sign
    jobs[component] = self.__sign_primary(component, tmpdir, data)
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 284, in __sign_primary
    xcode_archive(simple_app_proj, "SimpleApp", archive)
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 68, in xcode_archive
    return exec_retry("xcode_archive", lambda: _xcode_archive(project_dir, scheme_name, archive))
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 61, in exec_retry
    raise last_error
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 53, in exec_retry
    return func()
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 68, in <lambda>
    return exec_retry("xcode_archive", lambda: _xcode_archive(project_dir, scheme_name, archive))
  File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 74, in _xcode_archive
    return run_process(
  File "/Users/runner/work/SignTools-CI/SignTools-CI/util.py", line 29, in run_process
    raise (
Exception: {'stdout': 'Command line invocation:\n    /Applications/Xcode_12.5.1.app/Contents/Developer/usr/bin/xcodebuild -allowProvisioningUpdates -project /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/SimpleApp.xcodeproj -scheme SimpleApp clean archive -archivePath /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/archive.xcarchive\n\nUser defaults from command line:\n    IDEArchivePathOverride = /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/archive.xcarchive\n    IDEPackageSupportUseBuiltinSCM = YES\n\nnote: Using new build system\nnote: Building targets in parallel\nnote: Build preparation complete\n\n** CLEAN SUCCEEDED **\n\nnote: Using new build system\nnote: Building targets in parallel\nnote: Planning build\nnote: Analyzing workspace\nnote: Constructing build description\nnote: Build preparation complete\nerror: No account for team "9FS5C6BF2T". Add a new account in the Accounts preference pane or verify that your accounts have valid credentials. (in target \'SimpleApp\' from project \'SimpleApp\')\nerror: No profiles for \'mv8.sk47p9o3h3k.20rtjl0\' were found: Xcode couldn\'t find any iOS App Development provisioning profiles matching \'mv8.sk47p9o3h3k.20rtjl0\'. (in target \'SimpleApp\' from project \'SimpleApp\')', 'stderr': '2022-06-02 14:53:59.552 xcodebuild[1252:9742] CFURLRequestSetHTTPCookieStorageAcceptPolicy_block_invoke: no longer implemented and should not be called\n** ARCHIVE FAILED **'}
==============================================
Uploading screenshot...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
 49 1170k    0     0   49  576k      0   427k  0:00:02  0:00:01  0:00:01  428k
100 1171k    0   133  100 1170k     71   633k  0:00:01  0:00:01 --:--:--  634k

=========================

Uploaded 1 file, 1 199 069 bytes

wget https://bashupload.com/FZPEJ/test.jpg

=========================

==============================================
Cleaning up...
Error: Process completed with exit code 1.

Still an error, different error message though. My account is not part of a business account. There is nothing special about it as far as I'm aware.

<!-- gh-comment-id:1144962800 --> @btglr commented on GitHub (Jun 2, 2022): ``` Signing Obtaining provisioning profile... Archiving app... xcode_archive errored, retrying xcode_archive errored, retrying xcode_archive errored, retrying Traceback (most recent call last): File "/Users/runner/work/SignTools-CI/SignTools-CI/util.py", line 27, in run_process result = subprocess.run(cmd, capture_output=capture, check=check, env=env, cwd=cwd, timeout=timeout) File "/usr/local/Cellar/python@3.9/3.9.13_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/subprocess.py", line 528, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '('xcodebuild', '-allowProvisioningUpdates', '-project', '/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/SimpleApp.xcodeproj', '-scheme', 'SimpleApp', 'clean', 'archive', '-archivePath', '/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/archive.xcarchive')' returned non-zero exit status 65. The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/Users/runner/work/SignTools-CI/SignTools-CI/sign.py", line 388, in <module> run() File "/Users/runner/work/SignTools-CI/SignTools-CI/sign.py", line 337, in run Signer( File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 620, in sign jobs[component] = self.__sign_primary(component, tmpdir, data) File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 284, in __sign_primary xcode_archive(simple_app_proj, "SimpleApp", archive) File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 68, in xcode_archive return exec_retry("xcode_archive", lambda: _xcode_archive(project_dir, scheme_name, archive)) File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 61, in exec_retry raise last_error File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 53, in exec_retry return func() File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 68, in <lambda> return exec_retry("xcode_archive", lambda: _xcode_archive(project_dir, scheme_name, archive)) File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 74, in _xcode_archive return run_process( File "/Users/runner/work/SignTools-CI/SignTools-CI/util.py", line 29, in run_process raise ( Exception: {'stdout': 'Command line invocation:\n /Applications/Xcode_12.5.1.app/Contents/Developer/usr/bin/xcodebuild -allowProvisioningUpdates -project /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/SimpleApp.xcodeproj -scheme SimpleApp clean archive -archivePath /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/archive.xcarchive\n\nUser defaults from command line:\n IDEArchivePathOverride = /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/archive.xcarchive\n IDEPackageSupportUseBuiltinSCM = YES\n\nnote: Using new build system\nnote: Building targets in parallel\nnote: Build preparation complete\n\n** CLEAN SUCCEEDED **\n\nnote: Using new build system\nnote: Building targets in parallel\nnote: Planning build\nnote: Analyzing workspace\nnote: Constructing build description\nnote: Build preparation complete\nerror: No account for team "9FS5C6BF2T". Add a new account in the Accounts preference pane or verify that your accounts have valid credentials. (in target \'SimpleApp\' from project \'SimpleApp\')\nerror: No profiles for \'mv8.sk47p9o3h3k.20rtjl0\' were found: Xcode couldn\'t find any iOS App Development provisioning profiles matching \'mv8.sk47p9o3h3k.20rtjl0\'. (in target \'SimpleApp\' from project \'SimpleApp\')', 'stderr': '2022-06-02 14:53:59.552 xcodebuild[1252:9742] CFURLRequestSetHTTPCookieStorageAcceptPolicy_block_invoke: no longer implemented and should not be called\n** ARCHIVE FAILED **'} ============================================== Uploading screenshot... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 49 1170k 0 0 49 576k 0 427k 0:00:02 0:00:01 0:00:01 428k 100 1171k 0 133 100 1170k 71 633k 0:00:01 0:00:01 --:--:-- 634k ========================= Uploaded 1 file, 1 199 069 bytes wget https://bashupload.com/FZPEJ/test.jpg ========================= ============================================== Cleaning up... Error: Process completed with exit code 1. ``` Still an error, different error message though. My account is not part of a business account. There is nothing special about it as far as I'm aware.
Author
Owner

@ViRb3 commented on GitHub (Jun 2, 2022):

The error is the same:

error: No account for team "9FS5C6BF2T". Add a new account in the Accounts preference pane or verify that your accounts have valid credentials. (in target 'SimpleApp' from project 'SimpleApp')

Another question - do you get 2FA code on your phone, which you then enter on the service website? Could you please upload the entire builder logs as an attachment or https://paste.gg?

<!-- gh-comment-id:1144964678 --> @ViRb3 commented on GitHub (Jun 2, 2022): The error is the same: > error: No account for team "9FS5C6BF2T". Add a new account in the Accounts preference pane or verify that your accounts have valid credentials. (in target \'SimpleApp\' from project \'SimpleApp\') Another question - do you get 2FA code on your phone, which you then enter on the service website? Could you please upload the entire builder logs as an attachment or https://paste.gg?
Author
Owner

@btglr commented on GitHub (Jun 2, 2022):

Here's the full log:

2022-06-02T14:52:42.7435484Z Requested labels: macos-11
2022-06-02T14:52:42.7435542Z Job defined at: btglr/SignTools-CI/.github/workflows/sign.yml@refs/heads/master
2022-06-02T14:52:42.7435600Z Waiting for a runner to pick up this job...
2022-06-02T14:52:43.2604346Z Job is waiting for a hosted runner to come online.
2022-06-02T14:52:51.0015025Z Job is about to start running on the hosted runner: Hosted Agent (hosted)
2022-06-02T14:52:56.3727020Z Current runner version: '2.291.1'
2022-06-02T14:52:56.3778410Z ##[group]Operating System
2022-06-02T14:52:56.3779040Z macOS
2022-06-02T14:52:56.3779550Z 11.6.6
2022-06-02T14:52:56.3779790Z 20G624
2022-06-02T14:52:56.3780050Z ##[endgroup]
2022-06-02T14:52:56.3780350Z ##[group]Virtual Environment
2022-06-02T14:52:56.3780700Z Environment: macos-11
2022-06-02T14:52:56.3780980Z Version: 20220530.2
2022-06-02T14:52:56.3781480Z Included Software: https://github.com/actions/virtual-environments/blob/macOS-11/20220530.2/images/macos/macos-11-Readme.md
2022-06-02T14:52:56.3782150Z Image Release: https://github.com/actions/virtual-environments/releases/tag/macOS-11%2F20220530.2
2022-06-02T14:52:56.3782870Z ##[endgroup]
2022-06-02T14:52:56.3783320Z ##[group]Virtual Environment Provisioner
2022-06-02T14:52:56.3783990Z 1.0.0.0-main-20220516-1
2022-06-02T14:52:56.3784400Z ##[endgroup]
2022-06-02T14:52:56.3785840Z ##[group]GITHUB_TOKEN Permissions
2022-06-02T14:52:56.3786680Z Actions: write
2022-06-02T14:52:56.3787320Z Checks: write
2022-06-02T14:52:56.3787850Z Contents: write
2022-06-02T14:52:56.3788260Z Deployments: write
2022-06-02T14:52:56.3788670Z Discussions: write
2022-06-02T14:52:56.3789300Z Issues: write
2022-06-02T14:52:56.3789760Z Metadata: read
2022-06-02T14:52:56.3790110Z Packages: write
2022-06-02T14:52:56.3790490Z Pages: write
2022-06-02T14:52:56.3790880Z PullRequests: write
2022-06-02T14:52:56.3791310Z RepositoryProjects: write
2022-06-02T14:52:56.3791930Z SecurityEvents: write
2022-06-02T14:52:56.3792280Z Statuses: write
2022-06-02T14:52:56.3792690Z ##[endgroup]
2022-06-02T14:52:56.3798540Z Secret source: Actions
2022-06-02T14:52:56.3799270Z Prepare workflow directory
2022-06-02T14:52:56.5454260Z Prepare all required actions
2022-06-02T14:52:56.5832890Z Getting action download info
2022-06-02T14:52:57.0134910Z Download action repository 'actions/checkout@v3' (SHA:2541b1294d2704b0964813337f33b291d3f8596b)
2022-06-02T14:52:58.7413450Z ##[group]Run actions/checkout@v3
2022-06-02T14:52:58.7414010Z with:
2022-06-02T14:52:58.7414410Z   repository: btglr/SignTools-CI
2022-06-02T14:52:58.7415330Z   token: ***
2022-06-02T14:52:58.7415640Z   ssh-strict: true
2022-06-02T14:52:58.7467120Z   persist-credentials: true
2022-06-02T14:52:58.7467600Z   clean: true
2022-06-02T14:52:58.7467980Z   fetch-depth: 1
2022-06-02T14:52:58.7468370Z   lfs: false
2022-06-02T14:52:58.7468590Z   submodules: false
2022-06-02T14:52:58.7469220Z   set-safe-directory: true
2022-06-02T14:52:58.7469640Z env:
2022-06-02T14:52:58.7470220Z   SECRET_URL: ***
2022-06-02T14:52:58.7470790Z   SECRET_KEY: ***
2022-06-02T14:52:58.7471110Z ##[endgroup]
2022-06-02T14:53:00.1742390Z Syncing repository: btglr/SignTools-CI
2022-06-02T14:53:00.1745050Z ##[group]Getting Git version info
2022-06-02T14:53:00.1745720Z Working directory is '/Users/runner/work/SignTools-CI/SignTools-CI'
2022-06-02T14:53:00.1746320Z [command]/usr/local/bin/git version
2022-06-02T14:53:00.3194510Z git version 2.36.1
2022-06-02T14:53:00.3263470Z ##[endgroup]
2022-06-02T14:53:00.3369600Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/06133514-dd0b-45a9-b1c0-3c058a3882be/.gitconfig'
2022-06-02T14:53:00.3370450Z Temporarily overriding HOME='/Users/runner/work/_temp/06133514-dd0b-45a9-b1c0-3c058a3882be' before making global git config changes
2022-06-02T14:53:00.3370960Z Adding repository directory to the temporary git global config as a safe directory
2022-06-02T14:53:00.3371570Z [command]/usr/local/bin/git config --global --add safe.directory /Users/runner/work/SignTools-CI/SignTools-CI
2022-06-02T14:53:00.3501700Z Deleting the contents of '/Users/runner/work/SignTools-CI/SignTools-CI'
2022-06-02T14:53:00.3508860Z ##[group]Initializing the repository
2022-06-02T14:53:00.3515920Z [command]/usr/local/bin/git init /Users/runner/work/SignTools-CI/SignTools-CI
2022-06-02T14:53:00.3879010Z hint: Using 'master' as the name for the initial branch. This default branch name
2022-06-02T14:53:00.3880250Z hint: is subject to change. To configure the initial branch name to use in all
2022-06-02T14:53:00.3882020Z hint: of your new repositories, which will suppress this warning, call:
2022-06-02T14:53:00.3882960Z hint: 
2022-06-02T14:53:00.3886230Z hint: 	git config --global init.defaultBranch <name>
2022-06-02T14:53:00.3886540Z hint: 
2022-06-02T14:53:00.3887020Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2022-06-02T14:53:00.3887580Z hint: 'development'. The just-created branch can be renamed via this command:
2022-06-02T14:53:00.3888130Z hint: 
2022-06-02T14:53:00.3888530Z hint: 	git branch -m <name>
2022-06-02T14:53:00.3959510Z Initialized empty Git repository in /Users/runner/work/SignTools-CI/SignTools-CI/.git/
2022-06-02T14:53:00.3972540Z [command]/usr/local/bin/git remote add origin https://github.com/btglr/SignTools-CI
2022-06-02T14:53:00.4115410Z ##[endgroup]
2022-06-02T14:53:00.4116060Z ##[group]Disabling automatic garbage collection
2022-06-02T14:53:00.4134970Z [command]/usr/local/bin/git config --local gc.auto 0
2022-06-02T14:53:00.4259100Z ##[endgroup]
2022-06-02T14:53:00.4259750Z ##[group]Setting up auth
2022-06-02T14:53:00.4274660Z [command]/usr/local/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-06-02T14:53:00.4391690Z [command]/usr/local/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-06-02T14:53:00.6222270Z [command]/usr/local/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2022-06-02T14:53:00.6344050Z [command]/usr/local/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2022-06-02T14:53:00.7765270Z [command]/usr/local/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2022-06-02T14:53:00.7922840Z ##[endgroup]
2022-06-02T14:53:00.7923730Z ##[group]Fetching the repository
2022-06-02T14:53:00.7938180Z [command]/usr/local/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +edb02f383b58bbeb4a9acbe62c5443c541afcf52:refs/remotes/origin/master
2022-06-02T14:53:01.3328490Z remote: Enumerating objects: 40, done.        
2022-06-02T14:53:01.3329100Z remote: Counting objects:   2% (1/40)        
2022-06-02T14:53:01.3329460Z remote: Counting objects:   5% (2/40)        
2022-06-02T14:53:01.3329790Z remote: Counting objects:   7% (3/40)        
2022-06-02T14:53:01.3330060Z remote: Counting objects:  10% (4/40)        
2022-06-02T14:53:01.3330600Z remote: Counting objects:  12% (5/40)        
2022-06-02T14:53:01.3330920Z remote: Counting objects:  15% (6/40)        
2022-06-02T14:53:01.3331230Z remote: Counting objects:  17% (7/40)        
2022-06-02T14:53:01.3331540Z remote: Counting objects:  20% (8/40)        
2022-06-02T14:53:01.3332040Z remote: Counting objects:  22% (9/40)        
2022-06-02T14:53:01.3332330Z remote: Counting objects:  25% (10/40)        
2022-06-02T14:53:01.3332670Z remote: Counting objects:  27% (11/40)        
2022-06-02T14:53:01.3332980Z remote: Counting objects:  30% (12/40)        
2022-06-02T14:53:01.3333450Z remote: Counting objects:  32% (13/40)        
2022-06-02T14:53:01.3333800Z remote: Counting objects:  35% (14/40)        
2022-06-02T14:53:01.3334120Z remote: Counting objects:  37% (15/40)        
2022-06-02T14:53:01.3334390Z remote: Counting objects:  40% (16/40)        
2022-06-02T14:53:01.3334710Z remote: Counting objects:  42% (17/40)        
2022-06-02T14:53:01.3335190Z remote: Counting objects:  45% (18/40)        
2022-06-02T14:53:01.3335500Z remote: Counting objects:  47% (19/40)        
2022-06-02T14:53:01.3335810Z remote: Counting objects:  50% (20/40)        
2022-06-02T14:53:01.3336120Z remote: Counting objects:  52% (21/40)        
2022-06-02T14:53:01.3336570Z remote: Counting objects:  55% (22/40)        
2022-06-02T14:53:01.3336910Z remote: Counting objects:  57% (23/40)        
2022-06-02T14:53:01.3337220Z remote: Counting objects:  60% (24/40)        
2022-06-02T14:53:01.3338220Z remote: Counting objects:  62% (25/40)        
2022-06-02T14:53:01.3356410Z remote: Counting objects:  65% (26/40)        
2022-06-02T14:53:01.3357660Z remote: Counting objects:  67% (27/40)        
2022-06-02T14:53:01.3358390Z remote: Counting objects:  70% (28/40)        
2022-06-02T14:53:01.3359080Z remote: Counting objects:  72% (29/40)        
2022-06-02T14:53:01.3359910Z remote: Counting objects:  75% (30/40)        
2022-06-02T14:53:01.3360580Z remote: Counting objects:  77% (31/40)        
2022-06-02T14:53:01.3361300Z remote: Counting objects:  80% (32/40)        
2022-06-02T14:53:01.3362200Z remote: Counting objects:  82% (33/40)        
2022-06-02T14:53:01.3362680Z remote: Counting objects:  85% (34/40)        
2022-06-02T14:53:01.3363950Z remote: Counting objects:  87% (35/40)        
2022-06-02T14:53:01.3364340Z remote: Counting objects:  90% (36/40)        
2022-06-02T14:53:01.3364670Z remote: Counting objects:  92% (37/40)        
2022-06-02T14:53:01.3365000Z remote: Counting objects:  95% (38/40)        
2022-06-02T14:53:01.3365520Z remote: Counting objects:  97% (39/40)        
2022-06-02T14:53:01.3365840Z remote: Counting objects: 100% (40/40)        
2022-06-02T14:53:01.3366130Z remote: Counting objects: 100% (40/40), done.        
2022-06-02T14:53:01.3366480Z remote: Compressing objects:   2% (1/34)        
2022-06-02T14:53:01.3366960Z remote: Compressing objects:   5% (2/34)        
2022-06-02T14:53:01.3367330Z remote: Compressing objects:   8% (3/34)        
2022-06-02T14:53:01.3367660Z remote: Compressing objects:  11% (4/34)        
2022-06-02T14:53:01.3367980Z remote: Compressing objects:  14% (5/34)        
2022-06-02T14:53:01.3368260Z remote: Compressing objects:  17% (6/34)        
2022-06-02T14:53:01.3368760Z remote: Compressing objects:  20% (7/34)        
2022-06-02T14:53:01.3370090Z remote: Compressing objects:  23% (8/34)        
2022-06-02T14:53:01.3371040Z remote: Compressing objects:  26% (9/34)        
2022-06-02T14:53:01.3371470Z remote: Compressing objects:  29% (10/34)        
2022-06-02T14:53:01.3381470Z remote: Compressing objects:  32% (11/34)        
2022-06-02T14:53:01.3414750Z remote: Compressing objects:  35% (12/34)        
2022-06-02T14:53:01.3415150Z remote: Compressing objects:  38% (13/34)        
2022-06-02T14:53:01.3415480Z remote: Compressing objects:  41% (14/34)        
2022-06-02T14:53:01.3415980Z remote: Compressing objects:  44% (15/34)        
2022-06-02T14:53:01.3416340Z remote: Compressing objects:  47% (16/34)        
2022-06-02T14:53:01.3416680Z remote: Compressing objects:  50% (17/34)        
2022-06-02T14:53:01.3416960Z remote: Compressing objects:  52% (18/34)        
2022-06-02T14:53:01.3417300Z remote: Compressing objects:  55% (19/34)        
2022-06-02T14:53:01.3417760Z remote: Compressing objects:  58% (20/34)        
2022-06-02T14:53:01.3418110Z remote: Compressing objects:  61% (21/34)        
2022-06-02T14:53:01.3418440Z remote: Compressing objects:  64% (22/34)        
2022-06-02T14:53:01.3418770Z remote: Compressing objects:  67% (23/34)        
2022-06-02T14:53:01.3419240Z remote: Compressing objects:  70% (24/34)        
2022-06-02T14:53:01.3419540Z remote: Compressing objects:  73% (25/34)        
2022-06-02T14:53:01.3419860Z remote: Compressing objects:  76% (26/34)        
2022-06-02T14:53:01.3420180Z remote: Compressing objects:  79% (27/34)        
2022-06-02T14:53:01.3420610Z remote: Compressing objects:  82% (28/34)        
2022-06-02T14:53:01.3421150Z remote: Compressing objects:  85% (29/34)        
2022-06-02T14:53:01.3423340Z remote: Compressing objects:  88% (30/34)        
2022-06-02T14:53:01.3424860Z remote: Compressing objects:  91% (31/34)        
2022-06-02T14:53:01.3425200Z remote: Compressing objects:  94% (32/34)        
2022-06-02T14:53:01.3431420Z remote: Compressing objects:  97% (33/34)        
2022-06-02T14:53:01.3432880Z remote: Compressing objects: 100% (34/34)        
2022-06-02T14:53:01.3433260Z remote: Compressing objects: 100% (34/34), done.        
2022-06-02T14:53:01.3484310Z remote: Total 40 (delta 1), reused 29 (delta 1), pack-reused 0        
2022-06-02T14:53:01.4393710Z From https://github.com/btglr/SignTools-CI
2022-06-02T14:53:01.4394480Z  * [new ref]         edb02f383b58bbeb4a9acbe62c5443c541afcf52 -> origin/master
2022-06-02T14:53:01.4502900Z ##[endgroup]
2022-06-02T14:53:01.4504190Z ##[group]Determining the checkout info
2022-06-02T14:53:01.4506290Z ##[endgroup]
2022-06-02T14:53:01.4507140Z ##[group]Checking out the ref
2022-06-02T14:53:01.4514090Z [command]/usr/local/bin/git checkout --progress --force -B master refs/remotes/origin/master
2022-06-02T14:53:01.4904590Z Reset branch 'master'
2022-06-02T14:53:01.4923270Z branch 'master' set up to track 'origin/master'.
2022-06-02T14:53:01.4932650Z ##[endgroup]
2022-06-02T14:53:01.5069010Z [command]/usr/local/bin/git log -1 --format='%H'
2022-06-02T14:53:01.5190810Z 'edb02f383b58bbeb4a9acbe62c5443c541afcf52'
2022-06-02T14:53:01.5717740Z ##[group]Run sudo xcode-select -s /Applications/Xcode_12.5.1.app
2022-06-02T14:53:01.5718370Z sudo xcode-select -s /Applications/Xcode_12.5.1.app
2022-06-02T14:53:01.5718870Z ./sign.sh
2022-06-02T14:53:01.6037660Z shell: /bin/bash -e {0}
2022-06-02T14:53:01.6038170Z env:
2022-06-02T14:53:01.6039000Z   SECRET_URL: ***
2022-06-02T14:53:01.6039660Z   SECRET_KEY: ***
2022-06-02T14:53:01.6040310Z ##[endgroup]
2022-06-02T14:53:02.7063680Z Initializing dependencies...
2022-06-02T14:53:06.9100040Z Obtaining files...
2022-06-02T14:53:10.4594890Z Download finished!
2022-06-02T14:53:10.5562480Z Creating keychain...
2022-06-02T14:53:11.0533200Z Using developer account
2022-06-02T14:53:11.1010860Z Logging in (1/2)...
2022-06-02T14:53:23.8284570Z Logging in (2/2)...
2022-06-02T14:53:23.8323470Z If you receive a two-factor authentication (2FA) code, please submit it to the web service.
2022-06-02T14:53:41.8598460Z Logged in!
2022-06-02T14:53:42.1500240Z Extracting app...
2022-06-02T14:53:42.6616090Z Signing...
2022-06-02T14:53:42.6764930Z Using encoded original bundle id
2022-06-02T14:53:42.6814650Z Preparing component /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpmbhaw3lb/Payload/Taurine.app
2022-06-02T14:53:42.7165060Z Failed to dump entitlements, using empty
2022-06-02T14:53:42.7165560Z Original entitlements:
2022-06-02T14:53:42.7166180Z {}
2022-06-02T14:53:42.7166680Z Failed to read old team id
2022-06-02T14:53:42.7167150Z Failed to read old app id prefix
2022-06-02T14:53:42.7172530Z ID mappings:
2022-06-02T14:53:42.7173120Z {
2022-06-02T14:53:42.7173480Z     "com.odysseyteam.taurine": "mv8.sk47p9o3h3k.20rtjl0"
2022-06-02T14:53:42.7173720Z }
2022-06-02T14:53:42.7173910Z Removed entitlements:
2022-06-02T14:53:42.7174130Z []
2022-06-02T14:53:42.7174430Z Processing component /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpmbhaw3lb/Payload/Taurine.app
2022-06-02T14:53:42.7174780Z Applying patches...
2022-06-02T14:53:42.7176080Z Patching /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpmbhaw3lb/Payload/Taurine.app/Taurine
2022-06-02T14:53:42.7965810Z Patching /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpmbhaw3lb/Payload/Taurine.app/Info.plist
2022-06-02T14:53:42.8060930Z Signing
2022-06-02T14:53:42.8293700Z Obtaining provisioning profile...
2022-06-02T14:53:42.8294200Z Archiving app...
2022-06-02T14:53:55.5479120Z xcode_archive errored, retrying
2022-06-02T14:53:58.3510680Z xcode_archive errored, retrying
2022-06-02T14:54:00.6528100Z xcode_archive errored, retrying
2022-06-02T14:54:00.7344210Z Traceback (most recent call last):
2022-06-02T14:54:00.7446170Z   File "/Users/runner/work/SignTools-CI/SignTools-CI/util.py", line 27, in run_process
2022-06-02T14:54:00.7547780Z     result = subprocess.run(cmd, capture_output=capture, check=check, env=env, cwd=cwd, timeout=timeout)
2022-06-02T14:54:00.7648020Z   File "/usr/local/Cellar/python@3.9/3.9.13_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/subprocess.py", line 528, in run
2022-06-02T14:54:00.7749360Z     raise CalledProcessError(retcode, process.args,
2022-06-02T14:54:00.7854110Z subprocess.CalledProcessError: Command '('xcodebuild', '-allowProvisioningUpdates', '-project', '/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/SimpleApp.xcodeproj', '-scheme', 'SimpleApp', 'clean', 'archive', '-archivePath', '/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/archive.xcarchive')' returned non-zero exit status 65.
2022-06-02T14:54:00.7859910Z 
2022-06-02T14:54:00.7860820Z The above exception was the direct cause of the following exception:
2022-06-02T14:54:00.7861900Z 
2022-06-02T14:54:00.7864030Z Traceback (most recent call last):
2022-06-02T14:54:00.7866020Z   File "/Users/runner/work/SignTools-CI/SignTools-CI/sign.py", line 388, in <module>
2022-06-02T14:54:00.7869710Z     run()
2022-06-02T14:54:00.7870730Z   File "/Users/runner/work/SignTools-CI/SignTools-CI/sign.py", line 337, in run
2022-06-02T14:54:00.7871860Z     Signer(
2022-06-02T14:54:00.7873990Z   File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 620, in sign
2022-06-02T14:54:00.7874900Z     jobs[component] = self.__sign_primary(component, tmpdir, data)
2022-06-02T14:54:00.7875770Z   File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 284, in __sign_primary
2022-06-02T14:54:00.7876630Z     xcode_archive(simple_app_proj, "SimpleApp", archive)
2022-06-02T14:54:00.7877540Z   File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 68, in xcode_archive
2022-06-02T14:54:00.7878370Z     return exec_retry("xcode_archive", lambda: _xcode_archive(project_dir, scheme_name, archive))
2022-06-02T14:54:00.7879330Z   File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 61, in exec_retry
2022-06-02T14:54:00.7879960Z     raise last_error
2022-06-02T14:54:00.7881270Z   File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 53, in exec_retry
2022-06-02T14:54:00.7882020Z     return func()
2022-06-02T14:54:00.7882870Z   File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 68, in <lambda>
2022-06-02T14:54:00.7883640Z     return exec_retry("xcode_archive", lambda: _xcode_archive(project_dir, scheme_name, archive))
2022-06-02T14:54:00.7884650Z   File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 74, in _xcode_archive
2022-06-02T14:54:00.7885750Z     return run_process(
2022-06-02T14:54:00.7886630Z   File "/Users/runner/work/SignTools-CI/SignTools-CI/util.py", line 29, in run_process
2022-06-02T14:54:00.7887260Z     raise (
2022-06-02T14:54:00.7891070Z Exception: {'stdout': 'Command line invocation:\n    /Applications/Xcode_12.5.1.app/Contents/Developer/usr/bin/xcodebuild -allowProvisioningUpdates -project /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/SimpleApp.xcodeproj -scheme SimpleApp clean archive -archivePath /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/archive.xcarchive\n\nUser defaults from command line:\n    IDEArchivePathOverride = /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/archive.xcarchive\n    IDEPackageSupportUseBuiltinSCM = YES\n\nnote: Using new build system\nnote: Building targets in parallel\nnote: Build preparation complete\n\n** CLEAN SUCCEEDED **\n\nnote: Using new build system\nnote: Building targets in parallel\nnote: Planning build\nnote: Analyzing workspace\nnote: Constructing build description\nnote: Build preparation complete\nerror: No account for team "9FS5C6BF2T". Add a new account in the Accounts preference pane or verify that your accounts have valid credentials. (in target \'SimpleApp\' from project \'SimpleApp\')\nerror: No profiles for \'mv8.sk47p9o3h3k.20rtjl0\' were found: Xcode couldn\'t find any iOS App Development provisioning profiles matching \'mv8.sk47p9o3h3k.20rtjl0\'. (in target \'SimpleApp\' from project \'SimpleApp\')', 'stderr': '2022-06-02 14:53:59.552 xcodebuild[1252:9742] CFURLRequestSetHTTPCookieStorageAcceptPolicy_block_invoke: no longer implemented and should not be called\n** ARCHIVE FAILED **'}
2022-06-02T14:54:00.8639380Z ==============================================
2022-06-02T14:54:01.2937270Z Uploading screenshot...
2022-06-02T14:54:01.3122950Z   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
2022-06-02T14:54:01.3124010Z                                  Dload  Upload   Total   Spent    Left  Speed
2022-06-02T14:54:01.3124630Z 
2022-06-02T14:54:01.6510490Z   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
2022-06-02T14:54:02.6570460Z   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
2022-06-02T14:54:03.1566550Z  49 1170k    0     0   49  576k      0   427k  0:00:02  0:00:01  0:00:01  428k
2022-06-02T14:54:03.1568000Z 100 1171k    0   133  100 1170k     71   633k  0:00:01  0:00:01 --:--:--  634k
2022-06-02T14:54:03.1568210Z 
2022-06-02T14:54:03.1568320Z =========================
2022-06-02T14:54:03.1568470Z 
2022-06-02T14:54:03.1568610Z Uploaded 1 file, 1 199 069 bytes
2022-06-02T14:54:03.1569530Z 
2022-06-02T14:54:03.1570500Z wget https://bashupload.com/FZPEJ/test.jpg
2022-06-02T14:54:03.1571010Z 
2022-06-02T14:54:03.1571140Z =========================
2022-06-02T14:54:03.1571300Z 
2022-06-02T14:54:03.1609300Z ==============================================
2022-06-02T14:54:03.1613420Z Cleaning up...
2022-06-02T14:54:03.4970850Z ##[error]Process completed with exit code 1.
2022-06-02T14:54:03.5071700Z Post job cleanup.
2022-06-02T14:54:03.6642610Z [command]/usr/local/bin/git version
2022-06-02T14:54:03.6798910Z git version 2.36.1
2022-06-02T14:54:03.6866860Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/d5da4e76-8af2-4d42-9925-3c27b6a74c97/.gitconfig'
2022-06-02T14:54:03.7293700Z Temporarily overriding HOME='/Users/runner/work/_temp/d5da4e76-8af2-4d42-9925-3c27b6a74c97' before making global git config changes
2022-06-02T14:54:03.7294760Z Adding repository directory to the temporary git global config as a safe directory
2022-06-02T14:54:03.7303550Z [command]/usr/local/bin/git config --global --add safe.directory /Users/runner/work/SignTools-CI/SignTools-CI
2022-06-02T14:54:03.7448420Z [command]/usr/local/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-06-02T14:54:03.7572530Z [command]/usr/local/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-06-02T14:54:03.8897620Z [command]/usr/local/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2022-06-02T14:54:03.8999070Z http.https://github.com/.extraheader
2022-06-02T14:54:03.9020340Z [command]/usr/local/bin/git config --local --unset-all http.https://github.com/.extraheader
2022-06-02T14:54:03.9145190Z [command]/usr/local/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2022-06-02T14:54:04.0784520Z Cleaning up orphan processes

I don't see much more than what I already posted though. I did get a 2FA code (on my Mac) and entered it, then signing resumed.

<!-- gh-comment-id:1144970049 --> @btglr commented on GitHub (Jun 2, 2022): Here's the full log: <details> ``` 2022-06-02T14:52:42.7435484Z Requested labels: macos-11 2022-06-02T14:52:42.7435542Z Job defined at: btglr/SignTools-CI/.github/workflows/sign.yml@refs/heads/master 2022-06-02T14:52:42.7435600Z Waiting for a runner to pick up this job... 2022-06-02T14:52:43.2604346Z Job is waiting for a hosted runner to come online. 2022-06-02T14:52:51.0015025Z Job is about to start running on the hosted runner: Hosted Agent (hosted) 2022-06-02T14:52:56.3727020Z Current runner version: '2.291.1' 2022-06-02T14:52:56.3778410Z ##[group]Operating System 2022-06-02T14:52:56.3779040Z macOS 2022-06-02T14:52:56.3779550Z 11.6.6 2022-06-02T14:52:56.3779790Z 20G624 2022-06-02T14:52:56.3780050Z ##[endgroup] 2022-06-02T14:52:56.3780350Z ##[group]Virtual Environment 2022-06-02T14:52:56.3780700Z Environment: macos-11 2022-06-02T14:52:56.3780980Z Version: 20220530.2 2022-06-02T14:52:56.3781480Z Included Software: https://github.com/actions/virtual-environments/blob/macOS-11/20220530.2/images/macos/macos-11-Readme.md 2022-06-02T14:52:56.3782150Z Image Release: https://github.com/actions/virtual-environments/releases/tag/macOS-11%2F20220530.2 2022-06-02T14:52:56.3782870Z ##[endgroup] 2022-06-02T14:52:56.3783320Z ##[group]Virtual Environment Provisioner 2022-06-02T14:52:56.3783990Z 1.0.0.0-main-20220516-1 2022-06-02T14:52:56.3784400Z ##[endgroup] 2022-06-02T14:52:56.3785840Z ##[group]GITHUB_TOKEN Permissions 2022-06-02T14:52:56.3786680Z Actions: write 2022-06-02T14:52:56.3787320Z Checks: write 2022-06-02T14:52:56.3787850Z Contents: write 2022-06-02T14:52:56.3788260Z Deployments: write 2022-06-02T14:52:56.3788670Z Discussions: write 2022-06-02T14:52:56.3789300Z Issues: write 2022-06-02T14:52:56.3789760Z Metadata: read 2022-06-02T14:52:56.3790110Z Packages: write 2022-06-02T14:52:56.3790490Z Pages: write 2022-06-02T14:52:56.3790880Z PullRequests: write 2022-06-02T14:52:56.3791310Z RepositoryProjects: write 2022-06-02T14:52:56.3791930Z SecurityEvents: write 2022-06-02T14:52:56.3792280Z Statuses: write 2022-06-02T14:52:56.3792690Z ##[endgroup] 2022-06-02T14:52:56.3798540Z Secret source: Actions 2022-06-02T14:52:56.3799270Z Prepare workflow directory 2022-06-02T14:52:56.5454260Z Prepare all required actions 2022-06-02T14:52:56.5832890Z Getting action download info 2022-06-02T14:52:57.0134910Z Download action repository 'actions/checkout@v3' (SHA:2541b1294d2704b0964813337f33b291d3f8596b) 2022-06-02T14:52:58.7413450Z ##[group]Run actions/checkout@v3 2022-06-02T14:52:58.7414010Z with: 2022-06-02T14:52:58.7414410Z repository: btglr/SignTools-CI 2022-06-02T14:52:58.7415330Z token: *** 2022-06-02T14:52:58.7415640Z ssh-strict: true 2022-06-02T14:52:58.7467120Z persist-credentials: true 2022-06-02T14:52:58.7467600Z clean: true 2022-06-02T14:52:58.7467980Z fetch-depth: 1 2022-06-02T14:52:58.7468370Z lfs: false 2022-06-02T14:52:58.7468590Z submodules: false 2022-06-02T14:52:58.7469220Z set-safe-directory: true 2022-06-02T14:52:58.7469640Z env: 2022-06-02T14:52:58.7470220Z SECRET_URL: *** 2022-06-02T14:52:58.7470790Z SECRET_KEY: *** 2022-06-02T14:52:58.7471110Z ##[endgroup] 2022-06-02T14:53:00.1742390Z Syncing repository: btglr/SignTools-CI 2022-06-02T14:53:00.1745050Z ##[group]Getting Git version info 2022-06-02T14:53:00.1745720Z Working directory is '/Users/runner/work/SignTools-CI/SignTools-CI' 2022-06-02T14:53:00.1746320Z [command]/usr/local/bin/git version 2022-06-02T14:53:00.3194510Z git version 2.36.1 2022-06-02T14:53:00.3263470Z ##[endgroup] 2022-06-02T14:53:00.3369600Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/06133514-dd0b-45a9-b1c0-3c058a3882be/.gitconfig' 2022-06-02T14:53:00.3370450Z Temporarily overriding HOME='/Users/runner/work/_temp/06133514-dd0b-45a9-b1c0-3c058a3882be' before making global git config changes 2022-06-02T14:53:00.3370960Z Adding repository directory to the temporary git global config as a safe directory 2022-06-02T14:53:00.3371570Z [command]/usr/local/bin/git config --global --add safe.directory /Users/runner/work/SignTools-CI/SignTools-CI 2022-06-02T14:53:00.3501700Z Deleting the contents of '/Users/runner/work/SignTools-CI/SignTools-CI' 2022-06-02T14:53:00.3508860Z ##[group]Initializing the repository 2022-06-02T14:53:00.3515920Z [command]/usr/local/bin/git init /Users/runner/work/SignTools-CI/SignTools-CI 2022-06-02T14:53:00.3879010Z hint: Using 'master' as the name for the initial branch. This default branch name 2022-06-02T14:53:00.3880250Z hint: is subject to change. To configure the initial branch name to use in all 2022-06-02T14:53:00.3882020Z hint: of your new repositories, which will suppress this warning, call: 2022-06-02T14:53:00.3882960Z hint: 2022-06-02T14:53:00.3886230Z hint: git config --global init.defaultBranch <name> 2022-06-02T14:53:00.3886540Z hint: 2022-06-02T14:53:00.3887020Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2022-06-02T14:53:00.3887580Z hint: 'development'. The just-created branch can be renamed via this command: 2022-06-02T14:53:00.3888130Z hint: 2022-06-02T14:53:00.3888530Z hint: git branch -m <name> 2022-06-02T14:53:00.3959510Z Initialized empty Git repository in /Users/runner/work/SignTools-CI/SignTools-CI/.git/ 2022-06-02T14:53:00.3972540Z [command]/usr/local/bin/git remote add origin https://github.com/btglr/SignTools-CI 2022-06-02T14:53:00.4115410Z ##[endgroup] 2022-06-02T14:53:00.4116060Z ##[group]Disabling automatic garbage collection 2022-06-02T14:53:00.4134970Z [command]/usr/local/bin/git config --local gc.auto 0 2022-06-02T14:53:00.4259100Z ##[endgroup] 2022-06-02T14:53:00.4259750Z ##[group]Setting up auth 2022-06-02T14:53:00.4274660Z [command]/usr/local/bin/git config --local --name-only --get-regexp core\.sshCommand 2022-06-02T14:53:00.4391690Z [command]/usr/local/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || : 2022-06-02T14:53:00.6222270Z [command]/usr/local/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2022-06-02T14:53:00.6344050Z [command]/usr/local/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || : 2022-06-02T14:53:00.7765270Z [command]/usr/local/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2022-06-02T14:53:00.7922840Z ##[endgroup] 2022-06-02T14:53:00.7923730Z ##[group]Fetching the repository 2022-06-02T14:53:00.7938180Z [command]/usr/local/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +edb02f383b58bbeb4a9acbe62c5443c541afcf52:refs/remotes/origin/master 2022-06-02T14:53:01.3328490Z remote: Enumerating objects: 40, done. 2022-06-02T14:53:01.3329100Z remote: Counting objects: 2% (1/40) 2022-06-02T14:53:01.3329460Z remote: Counting objects: 5% (2/40) 2022-06-02T14:53:01.3329790Z remote: Counting objects: 7% (3/40) 2022-06-02T14:53:01.3330060Z remote: Counting objects: 10% (4/40) 2022-06-02T14:53:01.3330600Z remote: Counting objects: 12% (5/40) 2022-06-02T14:53:01.3330920Z remote: Counting objects: 15% (6/40) 2022-06-02T14:53:01.3331230Z remote: Counting objects: 17% (7/40) 2022-06-02T14:53:01.3331540Z remote: Counting objects: 20% (8/40) 2022-06-02T14:53:01.3332040Z remote: Counting objects: 22% (9/40) 2022-06-02T14:53:01.3332330Z remote: Counting objects: 25% (10/40) 2022-06-02T14:53:01.3332670Z remote: Counting objects: 27% (11/40) 2022-06-02T14:53:01.3332980Z remote: Counting objects: 30% (12/40) 2022-06-02T14:53:01.3333450Z remote: Counting objects: 32% (13/40) 2022-06-02T14:53:01.3333800Z remote: Counting objects: 35% (14/40) 2022-06-02T14:53:01.3334120Z remote: Counting objects: 37% (15/40) 2022-06-02T14:53:01.3334390Z remote: Counting objects: 40% (16/40) 2022-06-02T14:53:01.3334710Z remote: Counting objects: 42% (17/40) 2022-06-02T14:53:01.3335190Z remote: Counting objects: 45% (18/40) 2022-06-02T14:53:01.3335500Z remote: Counting objects: 47% (19/40) 2022-06-02T14:53:01.3335810Z remote: Counting objects: 50% (20/40) 2022-06-02T14:53:01.3336120Z remote: Counting objects: 52% (21/40) 2022-06-02T14:53:01.3336570Z remote: Counting objects: 55% (22/40) 2022-06-02T14:53:01.3336910Z remote: Counting objects: 57% (23/40) 2022-06-02T14:53:01.3337220Z remote: Counting objects: 60% (24/40) 2022-06-02T14:53:01.3338220Z remote: Counting objects: 62% (25/40) 2022-06-02T14:53:01.3356410Z remote: Counting objects: 65% (26/40) 2022-06-02T14:53:01.3357660Z remote: Counting objects: 67% (27/40) 2022-06-02T14:53:01.3358390Z remote: Counting objects: 70% (28/40) 2022-06-02T14:53:01.3359080Z remote: Counting objects: 72% (29/40) 2022-06-02T14:53:01.3359910Z remote: Counting objects: 75% (30/40) 2022-06-02T14:53:01.3360580Z remote: Counting objects: 77% (31/40) 2022-06-02T14:53:01.3361300Z remote: Counting objects: 80% (32/40) 2022-06-02T14:53:01.3362200Z remote: Counting objects: 82% (33/40) 2022-06-02T14:53:01.3362680Z remote: Counting objects: 85% (34/40) 2022-06-02T14:53:01.3363950Z remote: Counting objects: 87% (35/40) 2022-06-02T14:53:01.3364340Z remote: Counting objects: 90% (36/40) 2022-06-02T14:53:01.3364670Z remote: Counting objects: 92% (37/40) 2022-06-02T14:53:01.3365000Z remote: Counting objects: 95% (38/40) 2022-06-02T14:53:01.3365520Z remote: Counting objects: 97% (39/40) 2022-06-02T14:53:01.3365840Z remote: Counting objects: 100% (40/40) 2022-06-02T14:53:01.3366130Z remote: Counting objects: 100% (40/40), done. 2022-06-02T14:53:01.3366480Z remote: Compressing objects: 2% (1/34) 2022-06-02T14:53:01.3366960Z remote: Compressing objects: 5% (2/34) 2022-06-02T14:53:01.3367330Z remote: Compressing objects: 8% (3/34) 2022-06-02T14:53:01.3367660Z remote: Compressing objects: 11% (4/34) 2022-06-02T14:53:01.3367980Z remote: Compressing objects: 14% (5/34) 2022-06-02T14:53:01.3368260Z remote: Compressing objects: 17% (6/34) 2022-06-02T14:53:01.3368760Z remote: Compressing objects: 20% (7/34) 2022-06-02T14:53:01.3370090Z remote: Compressing objects: 23% (8/34) 2022-06-02T14:53:01.3371040Z remote: Compressing objects: 26% (9/34) 2022-06-02T14:53:01.3371470Z remote: Compressing objects: 29% (10/34) 2022-06-02T14:53:01.3381470Z remote: Compressing objects: 32% (11/34) 2022-06-02T14:53:01.3414750Z remote: Compressing objects: 35% (12/34) 2022-06-02T14:53:01.3415150Z remote: Compressing objects: 38% (13/34) 2022-06-02T14:53:01.3415480Z remote: Compressing objects: 41% (14/34) 2022-06-02T14:53:01.3415980Z remote: Compressing objects: 44% (15/34) 2022-06-02T14:53:01.3416340Z remote: Compressing objects: 47% (16/34) 2022-06-02T14:53:01.3416680Z remote: Compressing objects: 50% (17/34) 2022-06-02T14:53:01.3416960Z remote: Compressing objects: 52% (18/34) 2022-06-02T14:53:01.3417300Z remote: Compressing objects: 55% (19/34) 2022-06-02T14:53:01.3417760Z remote: Compressing objects: 58% (20/34) 2022-06-02T14:53:01.3418110Z remote: Compressing objects: 61% (21/34) 2022-06-02T14:53:01.3418440Z remote: Compressing objects: 64% (22/34) 2022-06-02T14:53:01.3418770Z remote: Compressing objects: 67% (23/34) 2022-06-02T14:53:01.3419240Z remote: Compressing objects: 70% (24/34) 2022-06-02T14:53:01.3419540Z remote: Compressing objects: 73% (25/34) 2022-06-02T14:53:01.3419860Z remote: Compressing objects: 76% (26/34) 2022-06-02T14:53:01.3420180Z remote: Compressing objects: 79% (27/34) 2022-06-02T14:53:01.3420610Z remote: Compressing objects: 82% (28/34) 2022-06-02T14:53:01.3421150Z remote: Compressing objects: 85% (29/34) 2022-06-02T14:53:01.3423340Z remote: Compressing objects: 88% (30/34) 2022-06-02T14:53:01.3424860Z remote: Compressing objects: 91% (31/34) 2022-06-02T14:53:01.3425200Z remote: Compressing objects: 94% (32/34) 2022-06-02T14:53:01.3431420Z remote: Compressing objects: 97% (33/34) 2022-06-02T14:53:01.3432880Z remote: Compressing objects: 100% (34/34) 2022-06-02T14:53:01.3433260Z remote: Compressing objects: 100% (34/34), done. 2022-06-02T14:53:01.3484310Z remote: Total 40 (delta 1), reused 29 (delta 1), pack-reused 0 2022-06-02T14:53:01.4393710Z From https://github.com/btglr/SignTools-CI 2022-06-02T14:53:01.4394480Z * [new ref] edb02f383b58bbeb4a9acbe62c5443c541afcf52 -> origin/master 2022-06-02T14:53:01.4502900Z ##[endgroup] 2022-06-02T14:53:01.4504190Z ##[group]Determining the checkout info 2022-06-02T14:53:01.4506290Z ##[endgroup] 2022-06-02T14:53:01.4507140Z ##[group]Checking out the ref 2022-06-02T14:53:01.4514090Z [command]/usr/local/bin/git checkout --progress --force -B master refs/remotes/origin/master 2022-06-02T14:53:01.4904590Z Reset branch 'master' 2022-06-02T14:53:01.4923270Z branch 'master' set up to track 'origin/master'. 2022-06-02T14:53:01.4932650Z ##[endgroup] 2022-06-02T14:53:01.5069010Z [command]/usr/local/bin/git log -1 --format='%H' 2022-06-02T14:53:01.5190810Z 'edb02f383b58bbeb4a9acbe62c5443c541afcf52' 2022-06-02T14:53:01.5717740Z ##[group]Run sudo xcode-select -s /Applications/Xcode_12.5.1.app 2022-06-02T14:53:01.5718370Z sudo xcode-select -s /Applications/Xcode_12.5.1.app 2022-06-02T14:53:01.5718870Z ./sign.sh 2022-06-02T14:53:01.6037660Z shell: /bin/bash -e {0} 2022-06-02T14:53:01.6038170Z env: 2022-06-02T14:53:01.6039000Z SECRET_URL: *** 2022-06-02T14:53:01.6039660Z SECRET_KEY: *** 2022-06-02T14:53:01.6040310Z ##[endgroup] 2022-06-02T14:53:02.7063680Z Initializing dependencies... 2022-06-02T14:53:06.9100040Z Obtaining files... 2022-06-02T14:53:10.4594890Z Download finished! 2022-06-02T14:53:10.5562480Z Creating keychain... 2022-06-02T14:53:11.0533200Z Using developer account 2022-06-02T14:53:11.1010860Z Logging in (1/2)... 2022-06-02T14:53:23.8284570Z Logging in (2/2)... 2022-06-02T14:53:23.8323470Z If you receive a two-factor authentication (2FA) code, please submit it to the web service. 2022-06-02T14:53:41.8598460Z Logged in! 2022-06-02T14:53:42.1500240Z Extracting app... 2022-06-02T14:53:42.6616090Z Signing... 2022-06-02T14:53:42.6764930Z Using encoded original bundle id 2022-06-02T14:53:42.6814650Z Preparing component /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpmbhaw3lb/Payload/Taurine.app 2022-06-02T14:53:42.7165060Z Failed to dump entitlements, using empty 2022-06-02T14:53:42.7165560Z Original entitlements: 2022-06-02T14:53:42.7166180Z {} 2022-06-02T14:53:42.7166680Z Failed to read old team id 2022-06-02T14:53:42.7167150Z Failed to read old app id prefix 2022-06-02T14:53:42.7172530Z ID mappings: 2022-06-02T14:53:42.7173120Z { 2022-06-02T14:53:42.7173480Z "com.odysseyteam.taurine": "mv8.sk47p9o3h3k.20rtjl0" 2022-06-02T14:53:42.7173720Z } 2022-06-02T14:53:42.7173910Z Removed entitlements: 2022-06-02T14:53:42.7174130Z [] 2022-06-02T14:53:42.7174430Z Processing component /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpmbhaw3lb/Payload/Taurine.app 2022-06-02T14:53:42.7174780Z Applying patches... 2022-06-02T14:53:42.7176080Z Patching /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpmbhaw3lb/Payload/Taurine.app/Taurine 2022-06-02T14:53:42.7965810Z Patching /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpmbhaw3lb/Payload/Taurine.app/Info.plist 2022-06-02T14:53:42.8060930Z Signing 2022-06-02T14:53:42.8293700Z Obtaining provisioning profile... 2022-06-02T14:53:42.8294200Z Archiving app... 2022-06-02T14:53:55.5479120Z xcode_archive errored, retrying 2022-06-02T14:53:58.3510680Z xcode_archive errored, retrying 2022-06-02T14:54:00.6528100Z xcode_archive errored, retrying 2022-06-02T14:54:00.7344210Z Traceback (most recent call last): 2022-06-02T14:54:00.7446170Z File "/Users/runner/work/SignTools-CI/SignTools-CI/util.py", line 27, in run_process 2022-06-02T14:54:00.7547780Z result = subprocess.run(cmd, capture_output=capture, check=check, env=env, cwd=cwd, timeout=timeout) 2022-06-02T14:54:00.7648020Z File "/usr/local/Cellar/python@3.9/3.9.13_1/Frameworks/Python.framework/Versions/3.9/lib/python3.9/subprocess.py", line 528, in run 2022-06-02T14:54:00.7749360Z raise CalledProcessError(retcode, process.args, 2022-06-02T14:54:00.7854110Z subprocess.CalledProcessError: Command '('xcodebuild', '-allowProvisioningUpdates', '-project', '/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/SimpleApp.xcodeproj', '-scheme', 'SimpleApp', 'clean', 'archive', '-archivePath', '/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/archive.xcarchive')' returned non-zero exit status 65. 2022-06-02T14:54:00.7859910Z 2022-06-02T14:54:00.7860820Z The above exception was the direct cause of the following exception: 2022-06-02T14:54:00.7861900Z 2022-06-02T14:54:00.7864030Z Traceback (most recent call last): 2022-06-02T14:54:00.7866020Z File "/Users/runner/work/SignTools-CI/SignTools-CI/sign.py", line 388, in <module> 2022-06-02T14:54:00.7869710Z run() 2022-06-02T14:54:00.7870730Z File "/Users/runner/work/SignTools-CI/SignTools-CI/sign.py", line 337, in run 2022-06-02T14:54:00.7871860Z Signer( 2022-06-02T14:54:00.7873990Z File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 620, in sign 2022-06-02T14:54:00.7874900Z jobs[component] = self.__sign_primary(component, tmpdir, data) 2022-06-02T14:54:00.7875770Z File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 284, in __sign_primary 2022-06-02T14:54:00.7876630Z xcode_archive(simple_app_proj, "SimpleApp", archive) 2022-06-02T14:54:00.7877540Z File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 68, in xcode_archive 2022-06-02T14:54:00.7878370Z return exec_retry("xcode_archive", lambda: _xcode_archive(project_dir, scheme_name, archive)) 2022-06-02T14:54:00.7879330Z File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 61, in exec_retry 2022-06-02T14:54:00.7879960Z raise last_error 2022-06-02T14:54:00.7881270Z File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 53, in exec_retry 2022-06-02T14:54:00.7882020Z return func() 2022-06-02T14:54:00.7882870Z File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 68, in <lambda> 2022-06-02T14:54:00.7883640Z return exec_retry("xcode_archive", lambda: _xcode_archive(project_dir, scheme_name, archive)) 2022-06-02T14:54:00.7884650Z File "/Users/runner/work/SignTools-CI/SignTools-CI/xsign.py", line 74, in _xcode_archive 2022-06-02T14:54:00.7885750Z return run_process( 2022-06-02T14:54:00.7886630Z File "/Users/runner/work/SignTools-CI/SignTools-CI/util.py", line 29, in run_process 2022-06-02T14:54:00.7887260Z raise ( 2022-06-02T14:54:00.7891070Z Exception: {'stdout': 'Command line invocation:\n /Applications/Xcode_12.5.1.app/Contents/Developer/usr/bin/xcodebuild -allowProvisioningUpdates -project /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/SimpleApp.xcodeproj -scheme SimpleApp clean archive -archivePath /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/archive.xcarchive\n\nUser defaults from command line:\n IDEArchivePathOverride = /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpt0cu_1qq/SimpleApp/archive.xcarchive\n IDEPackageSupportUseBuiltinSCM = YES\n\nnote: Using new build system\nnote: Building targets in parallel\nnote: Build preparation complete\n\n** CLEAN SUCCEEDED **\n\nnote: Using new build system\nnote: Building targets in parallel\nnote: Planning build\nnote: Analyzing workspace\nnote: Constructing build description\nnote: Build preparation complete\nerror: No account for team "9FS5C6BF2T". Add a new account in the Accounts preference pane or verify that your accounts have valid credentials. (in target \'SimpleApp\' from project \'SimpleApp\')\nerror: No profiles for \'mv8.sk47p9o3h3k.20rtjl0\' were found: Xcode couldn\'t find any iOS App Development provisioning profiles matching \'mv8.sk47p9o3h3k.20rtjl0\'. (in target \'SimpleApp\' from project \'SimpleApp\')', 'stderr': '2022-06-02 14:53:59.552 xcodebuild[1252:9742] CFURLRequestSetHTTPCookieStorageAcceptPolicy_block_invoke: no longer implemented and should not be called\n** ARCHIVE FAILED **'} 2022-06-02T14:54:00.8639380Z ============================================== 2022-06-02T14:54:01.2937270Z Uploading screenshot... 2022-06-02T14:54:01.3122950Z % Total % Received % Xferd Average Speed Time Time Time Current 2022-06-02T14:54:01.3124010Z Dload Upload Total Spent Left Speed 2022-06-02T14:54:01.3124630Z 2022-06-02T14:54:01.6510490Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2022-06-02T14:54:02.6570460Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2022-06-02T14:54:03.1566550Z 49 1170k 0 0 49 576k 0 427k 0:00:02 0:00:01 0:00:01 428k 2022-06-02T14:54:03.1568000Z 100 1171k 0 133 100 1170k 71 633k 0:00:01 0:00:01 --:--:-- 634k 2022-06-02T14:54:03.1568210Z 2022-06-02T14:54:03.1568320Z ========================= 2022-06-02T14:54:03.1568470Z 2022-06-02T14:54:03.1568610Z Uploaded 1 file, 1 199 069 bytes 2022-06-02T14:54:03.1569530Z 2022-06-02T14:54:03.1570500Z wget https://bashupload.com/FZPEJ/test.jpg 2022-06-02T14:54:03.1571010Z 2022-06-02T14:54:03.1571140Z ========================= 2022-06-02T14:54:03.1571300Z 2022-06-02T14:54:03.1609300Z ============================================== 2022-06-02T14:54:03.1613420Z Cleaning up... 2022-06-02T14:54:03.4970850Z ##[error]Process completed with exit code 1. 2022-06-02T14:54:03.5071700Z Post job cleanup. 2022-06-02T14:54:03.6642610Z [command]/usr/local/bin/git version 2022-06-02T14:54:03.6798910Z git version 2.36.1 2022-06-02T14:54:03.6866860Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/d5da4e76-8af2-4d42-9925-3c27b6a74c97/.gitconfig' 2022-06-02T14:54:03.7293700Z Temporarily overriding HOME='/Users/runner/work/_temp/d5da4e76-8af2-4d42-9925-3c27b6a74c97' before making global git config changes 2022-06-02T14:54:03.7294760Z Adding repository directory to the temporary git global config as a safe directory 2022-06-02T14:54:03.7303550Z [command]/usr/local/bin/git config --global --add safe.directory /Users/runner/work/SignTools-CI/SignTools-CI 2022-06-02T14:54:03.7448420Z [command]/usr/local/bin/git config --local --name-only --get-regexp core\.sshCommand 2022-06-02T14:54:03.7572530Z [command]/usr/local/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || : 2022-06-02T14:54:03.8897620Z [command]/usr/local/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2022-06-02T14:54:03.8999070Z http.https://github.com/.extraheader 2022-06-02T14:54:03.9020340Z [command]/usr/local/bin/git config --local --unset-all http.https://github.com/.extraheader 2022-06-02T14:54:03.9145190Z [command]/usr/local/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || : 2022-06-02T14:54:04.0784520Z Cleaning up orphan processes ``` </details> I don't see much more than what I already posted though. I did get a 2FA code (on my Mac) and entered it, then signing resumed.
Author
Owner

@ViRb3 commented on GitHub (Jun 2, 2022):

Could your p12 certificate be for a different team id from your personal account? Please check if both are "9FS5C6BF2T".

<!-- gh-comment-id:1144970936 --> @ViRb3 commented on GitHub (Jun 2, 2022): Could your p12 certificate be for a different team id from your personal account? Please check if both are "9FS5C6BF2T".
Author
Owner

@btglr commented on GitHub (Jun 2, 2022):

Is that what's in parentheses in the Keychain app? If so it is a different value (XRN3Y5FHP8). I generated those certificates an hour ago when setting up SignTools though.

<!-- gh-comment-id:1144974444 --> @btglr commented on GitHub (Jun 2, 2022): Is that what's in parentheses in the Keychain app? If so it is a different value (XRN3Y5FHP8). I generated those certificates an hour ago when setting up SignTools though.
Author
Owner

@ViRb3 commented on GitHub (Jun 2, 2022):

If you go on this page: https://developer.apple.com/account/#!/membership/

You should see "Team ID". Make sure that is the same as the "Organizational Unit" which you get by double-clicking on your certificate in Keychain.app, not what's in the parentheses.

<!-- gh-comment-id:1144980243 --> @ViRb3 commented on GitHub (Jun 2, 2022): If you go on this page: https://developer.apple.com/account/#!/membership/ You should see "Team ID". Make sure that is the same as the "Organizational Unit" which you get by double-clicking on your certificate in Keychain.app, not what's in the parentheses.
Author
Owner

@btglr commented on GitHub (Jun 2, 2022):

Indeed, they don't match. I generated a new certificate and this time they match and signing works. I think I may have used the wrong account to generate the certificate. Thanks for the help!

<!-- gh-comment-id:1144988995 --> @btglr commented on GitHub (Jun 2, 2022): Indeed, they don't match. I generated a new certificate and this time they match and signing works. I think I *may* have used the wrong account to generate the certificate. Thanks for the help!
Author
Owner

@ViRb3 commented on GitHub (Jun 2, 2022):

No problem! I should probably add a check for this somehow and print a more useful error.

<!-- gh-comment-id:1144991715 --> @ViRb3 commented on GitHub (Jun 2, 2022): No problem! I should probably add a check for this somehow and print a more useful error.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/SignTools#66
No description provided.