From ddf1e96e9b507b9abc84afb6aab0a67a7ba97d69 Mon Sep 17 00:00:00 2001 From: HolographicHat Date: Wed, 23 Nov 2022 14:35:31 +0800 Subject: [PATCH] fix post build script --- .github/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/utils.js b/.github/utils.js index 6713c02..91d505c 100644 --- a/.github/utils.js +++ b/.github/utils.js @@ -19,7 +19,7 @@ const getAppVersion = async () => { const getLatestRelease = async () => { const repoLatestVersionRsp = await axios.get(`https://api.github.com/repos/${repo}/releases/latest`) - return repoLatestVersionRsp.data.name + return repoLatestVersionRsp.data } const createRelease = async (name, desc) => {