From d5749606558f801adaf066678e22ba9bd47d954a Mon Sep 17 00:00:00 2001 From: Owen Rummage Date: Sun, 19 Jul 2026 17:04:39 -0500 Subject: [PATCH] Publish temporary macOS build diagnostics --- .github/workflows/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba11d13..a88a3a6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,6 +26,8 @@ jobs: build: name: Build ${{ matrix.target }} + permissions: + contents: write strategy: fail-fast: false matrix: @@ -155,6 +157,11 @@ jobs: tail -80 "$build_log" echo '```' } >> "$GITHUB_STEP_SUMMARY" + git config user.name github-actions + git config user.email github-actions@github.com + diagnostic_tag="diagnostic-${{ matrix.target }}-${{ github.run_id }}" + git tag -f -F "$build_log" "$diagnostic_tag" + git push --force origin "refs/tags/$diagnostic_tag" exit 1 fi cat "$build_log"