diff --git a/.github/workflows/build_nightly-on-tag.yml b/.github/workflows/build_nightly-on-tag.yml index 42da2e72..2b83cf48 100644 --- a/.github/workflows/build_nightly-on-tag.yml +++ b/.github/workflows/build_nightly-on-tag.yml @@ -26,5 +26,7 @@ jobs: GH_REPO: ${{ github.repository }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - gh release upload ${{ github.ref_name }} ./build/Build/Products/Release/VimR-neovim-nightly-unsigned.tar.bz2 --clobber + gh release delete ${{ github.ref_name }} -y + gh release create ${{ github.ref_name }} -p -t "VimR with neovim nightly" -F resources/nightly-release-notes + gh release upload ${{ github.ref_name }} ./build/Build/Products/Release/VimR-neovim-nightly-unsigned.tar.bz2 diff --git a/resources/nightly-release-notes.md b/resources/nightly-release-notes.md new file mode 100644 index 00000000..0b8f0848 --- /dev/null +++ b/resources/nightly-release-notes.md @@ -0,0 +1,4 @@ +⚠️ This build tries to follow Neovim's [master branch](https://github.com/neovim/neovim/commits/master) (and our [master](https://github.com/qvacua/vimr/commits/master)) on weekly basis. There are few differences to other releases or snapshot builds: + +1. This build is not signed (and therefore also not notarized). +2. This build is probably more unstable than others.