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
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,13 @@ jobs:
- name: Create or update GitHub Release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# The wohl checkout is at `wohl/` (not the workspace root, so
# we can co-locate the relay sibling at `../relay`). That means
# the workspace root has no `.git`, and `gh release ...` can't
# infer the repo via the normal git remote lookup. GH_REPO
# makes it explicit. Without this the step fails with
# `fatal: not a git repository`.
GH_REPO: ${{ github.repository }}
# Untrusted-input safety: the tag name flows in via env: and is
# dereferenced through $VERSION, never expanded into the shell.
INPUT_TAG: ${{ inputs.tag }}
Expand Down
Loading