Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/release-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,16 @@ jobs:
# call silently failed and the `||` fallback wrote an empty
# file, which then clobbered the existing release body when
# ncipollo updated it (this happened on v1.5.1).
#
# GH_REPO is required because this job downloads artifacts but
# never runs actions/checkout. Without it `gh` falls back to
# `git remote` to infer the repo and dies with "fatal: not a
# git repository" — which then mismatches the `release not
# found` fallback grep and aborts the whole step (this
# happened on v1.5.2: run 25871339509).
env:
GH_TOKEN: ${{ github.token }}
GH_REPO: ${{ github.repository }}
run: |
set -euo pipefail

Expand Down
Loading