ci: directly print nix out paths to step summary

Signed-off-by: Seth Flynn <getchoo@tuta.io>
This commit is contained in:
Seth Flynn 2025-02-01 22:55:39 -05:00
parent 138684a84f
commit 989e6c6cb6
No known key found for this signature in database
GPG Key ID: D31BD0D494BBEE86

View File

@ -80,9 +80,13 @@ jobs:
- name: Build debug package
if: ${{ env.DEBUG }}
run: |
nix build --print-build-logs .#prismlauncher-debug
nix build \
--no-link --print-build-logs --print-out-paths \
.#prismlauncher-debug >> "$GITHUB_STEP_SUMMARY"
- name: Build release package
if: ${{ !env.DEBUG }}
run: |
nix build --print-build-logs .#prismlauncher
nix build \
--no-link --print-build-logs --print-out-paths \
.#prismlauncher >> "$GITHUB_STEP_SUMMARY"