From e34f905f808788a62df00668abc3cabc55212a81 Mon Sep 17 00:00:00 2001 From: Tae Won Ha Date: Wed, 30 Mar 2022 22:54:33 +0200 Subject: [PATCH] Update snapshot appcast and fix release script --- appcast_snapshot.xml | 19 ++++++++++--------- bin/build_release.sh | 12 +++++------- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/appcast_snapshot.xml b/appcast_snapshot.xml index 93aa1f43..44f4163c 100644 --- a/appcast_snapshot.xml +++ b/appcast_snapshot.xml @@ -6,22 +6,23 @@ Most recent changes with links to updates for VimR. en - SNAPSHOT-20220323.180713 + SNAPSHOT-20220330.224200 https://twitter.com/vimrefined - 20220323.180713 - SNAPSHOT-20220323.180713 + 20220330.224200 + SNAPSHOT-20220330.224200 -
  • GH-922: Add an option to set font smoothing.
  • +

    Since last snapshot:

    +
      +
    • GH-928: Bugfix: Files containing some special characters in their names cannot be opened
    ]]>
    - https://github.com/qvacua/vimr/releases/tag/snapshot/20220323.180713 + https://github.com/qvacua/vimr/releases/tag/snapshot/20220330.224200 - 2022-03-23T18:16:10.030704 + 2022-03-30T22:53:54.541584 10.13.0 -
    diff --git a/bin/build_release.sh b/bin/build_release.sh index 0d377017..c7ed8dbe 100755 --- a/bin/build_release.sh +++ b/bin/build_release.sh @@ -68,16 +68,14 @@ build_release() { create_gh_release() { if [[ "${is_snapshot}" == true ]]; then - gh release create \ + gh release create "${tag}" \ --discussion-category "general" \ --prerelease \ - --target "${tag}" \ --title "${github_release_name}" \ --notes "${release_notes}" else - gh release create \ + gh release create "${tag}" \ --discussion-category "general" \ - --target "${tag}" \ --title "${github_release_name}" \ --notes "${release_notes}" fi @@ -118,9 +116,9 @@ main() { pushd "$(dirname "${BASH_SOURCE[0]}")/.." >/dev/null - check_version - prepare_bin - build_release +# check_version +# prepare_bin +# build_release if [[ "${create_gh_release}" == true ]]; then create_gh_release