Skip to content

Commit c5ce297

Browse files
authored
fix: Add repo flag when for updating the docker link during release (#3170)
1 parent e954a2c commit c5ce297

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,10 @@ jobs:
189189
# Get current release body and replace the generic link with the tag-specific one.
190190
# Use word boundary after GENERIC_URL (closing paren) to avoid matching URLs that
191191
# already have a version ID appended (idempotent on re-runs).
192-
gh release view "${TAG}" --json body --jq '.body' > /tmp/release-body.md
192+
gh release view "${TAG}" --repo triggerdotdev/trigger.dev --json body --jq '.body' > /tmp/release-body.md
193193
sed -i "s|${GENERIC_URL})|${DOCKER_URL})|g" /tmp/release-body.md
194194
195-
gh release edit "${TAG}" --notes-file /tmp/release-body.md
195+
gh release edit "${TAG}" --repo triggerdotdev/trigger.dev --notes-file /tmp/release-body.md
196196
197197
# Dispatch changelog entry creation to the marketing site repo.
198198
# Runs after update-release so the GitHub release body already has the exact Docker image URL.

0 commit comments

Comments
 (0)