Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Most important of the fixes is the first one, which sets `TRUNK_LAUNCHER_QUIET=false`. The launcher currently completely suppresses all output (including all errors), unless `TRUNK_LAUNCHER_QUIET` env var is set to `false`. ```bash if [[ ${TRUNK_LAUNCHER_QUIET} != false ]]; then exec 3>&1 4>&2 &>/dev/null fi ``` This prevents each and every one from debugging failed runs. Redirecting file descriptors like that also disables all `set -vx` output, resulting in a complete blackout and painful debugging. This PR will always enable launcher output, which is what I prefer, however if you don't like that, it may be changed, so that it's set only if `RUNNER_DEBUG == 1`. Also, you can migrate to `actions/download-artifact@v4` and rewrite this step: https://github.com/trunk-io/trunk-action/blob/03cb46f406176a84f390fb565960606c2bd0b8b3/action.yaml#L355-L378 --------- Co-authored-by: Eli Schleifer <[email protected]>
- Loading branch information