From 1e9839fabf35aa7bad44c3b56fd4a1a5440676eb Mon Sep 17 00:00:00 2001 From: CoderJoshDK <74162303+CoderJoshDK@users.noreply.github.com> Date: Fri, 5 Apr 2024 00:45:38 -0400 Subject: [PATCH] fix: correct release notes link (#84) ## Summary I originally tested this functionality in `uv-pre-commit`. And that is why when moving it over, I ended up copying the URL for that release. I am sorry for all the broken code I have introduced. I feel so bad. I am at least glad I realized before a new `ruff` release came out. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3358a6e..d45d484 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -57,7 +57,7 @@ jobs: echo $TAG_NAME gh release create "$TAG_NAME" \ --title "$TAG_NAME" \ - --notes "See: https://github.com/astral-sh/uv/releases/tag/$TAG_NAME" \ + --notes "See: https://github.com/astral-sh/ruff/releases/tag/$TAG_NAME" \ --latest env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}