Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/peaceiris/hugo-theme-iris.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpeaceiris <30958501+peaceiris@users.noreply.github.com>2022-06-29 06:03:59 +0300
committerpeaceiris <30958501+peaceiris@users.noreply.github.com>2022-06-29 06:03:59 +0300
commitc75efc40f5c5f0938351751aef0693877cf98b48 (patch)
tree04955b05bb8b9baf59b179e2bcc6d3a7c791501d
parent47350571a95977cdd263845ca23b472113be867f (diff)
ci: fix url to CHANGELOG
-rw-r--r--.github/workflows/release.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 9789eb3d..fce9b1d3 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -37,6 +37,6 @@ jobs:
RELEASE_TITLE="Release ${NEW_TAG}"
git tag -a ${NEW_TAG} -m "${RELEASE_TITLE}"
git push origin ${NEW_TAG}
- echo "See [CHANGELOG](https://github.com/peaceiris/playground-actions/compare/${CURRENT_TAG}...${NEW_TAG}) for more details." > "${RELEASE_NOTES}"
+ echo "See [CHANGELOG](https://github.com/${GITHUB_REPOSITORY}/compare/${CURRENT_TAG}...${NEW_TAG}) for more details." > "${RELEASE_NOTES}"
gh release create "${NEW_TAG}" --title "${RELEASE_TITLE}" --notes-file "${RELEASE_NOTES}"
rm "${RELEASE_NOTES}"