1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-09-11 17:15:34 +03:00
This commit is contained in:
Tae Won Ha 2024-05-27 23:52:13 +09:00
parent 09cd3519e0
commit f7a00ce478
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
3 changed files with 15 additions and 2 deletions

View File

@ -70,6 +70,10 @@ jobs:
- name: Create universal Neovim
run: ./bin/neovim/bin/build_universal_neovim.sh
# Set as prerelease such that the latest VimR release is marked as the latest stable release
- name: Publish release
run: |
gh release create $TAG_NAME --title "Neovim universal build ${TAG_NAME}" --target $GITHUB_SHA nvim-macos-x86_64.tar.gz nvim-macos-arm64.tar.gz nvim-macos-universal.tar.bz
gh release create $TAG_NAME \
--prerelease \
--title "Neovim universal build ${TAG_NAME}" \
--target $GITHUB_SHA nvim-macos-x86_64.tar.gz nvim-macos-arm64.tar.gz nvim-macos-universal.tar.bz

View File

@ -23,6 +23,16 @@ defaults write com.qvacua.VimR enable-debug-menu 1
## How to release
### Neovim
* Commit and push the new release of Neovim.
* Tag and push with the following
```bash
version=neovim-vX.Y.Z-$(date "+%Y%m%d.%H%M%S"); git tag -a "${version}" -m "${version}"; git push origin "${version}"
```
### VimR
* Set a new version of VimR via
```bash
is_snapshot=true ./bin/set_new_versions.sh # for snapshot or

View File

@ -33,7 +33,6 @@ main() {
lipo -create nvim-macos-arm64/bin/nvim nvim-macos-x86_64/bin/nvim \
-output "${universal_folder_path}/bin/nvim"
for f in nvim-macos-arm64/lib/nvim/parser/*; do
echo "${f}"
f="${f%/}"
local filename="${f##*/}"
lipo -create "nvim-macos-arm64/lib/nvim/parser/${filename}" \