From ef9845f2737049dafcbcea45426423bf1cc35bac Mon Sep 17 00:00:00 2001 From: ikaroskun Date: Mon, 24 Jan 2022 19:51:12 +0800 Subject: [PATCH] chore(workflow): :speech_balloon: update scripts --- {hack => .github/hack}/changelog.sh | 0 {hack => .github/hack}/version.sh | 0 .github/workflows/release.yml | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename {hack => .github/hack}/changelog.sh (100%) rename {hack => .github/hack}/version.sh (100%) diff --git a/hack/changelog.sh b/.github/hack/changelog.sh similarity index 100% rename from hack/changelog.sh rename to .github/hack/changelog.sh diff --git a/hack/version.sh b/.github/hack/version.sh similarity index 100% rename from hack/version.sh rename to .github/hack/version.sh diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba8991a..8178e90 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,8 +14,8 @@ jobs: - name: Generate Changelog run: | - VERSION=$(hack/version.sh) - hack/changelog.sh $VERSION > NEW-VERSION-CHANGELOG.md + VERSION=$(.github/hack/version.sh) + .github/hack/changelog.sh $VERSION > NEW-VERSION-CHANGELOG.md - name: Publish uses: softprops/action-gh-release@v1