You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Tauri custom signer was reached, but artifact-signing-cli failed inside the PowerShell wrapper. The CLI v0.11.0 has hard-coded default paths for Azure CLI and SignTool; the hosted runner image can change those paths. The workflow now resolves both tools on the runner, exports the paths through GITHUB_ENV, and passes them explicitly to the Tauri signCommand wrapper for both Windows x64 and ARM64 builds.
SignTool: Windows SDK 10.0.26100.0\x64\signtool.exe
The remaining failure is inside the signer, but Tauri only reports failed to run powershell.exe because it discards the wrapper stderr. Commit ee932503 now captures the signer output and exit code in the GitHub Actions job summary, with configured Azure values redacted.
The completed diagnostic run still exposed only Tauri's generic failed to run powershell.exe; the job summary is not included in downloadable Actions logs/API responses.
Commit b32e584d now writes the redacted signer output to RUNNER_TEMP and prints it from an always() workflow step, so the next run will expose the actual failure in the normal log.
Root cause found in diagnostic run 29765000301: the always() diagnostic step reported that the signing wrapper never created its log on either Windows job. Tauri runs the custom sign command from src-tauri, so src-tauri/sign-windows-artifact.ps1 resolved incorrectly.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
bundle.windows.signCommandto Authenticode-sign Windows artifacts during bundlingartifact-signing-cliand invoke it through a checked-in PowerShell wrapperConfiguration
AZURE_CLIENT_ID,AZURE_CLIENT_SECRET, andAZURE_TENANT_IDVerification
bun test(681 tests)Closes #290