2020-12-05 09:50:29 -07:00
|
|
|
name: Release
|
2020-12-01 21:32:04 -07:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '5 5 * * *'
|
2020-12-05 09:47:03 -07:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
tag_name:
|
|
|
|
description: 'Tag name for release'
|
|
|
|
required: false
|
|
|
|
default: nightly
|
2020-12-05 09:48:07 -07:00
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- v[0-9]+.[0-9]+.[0-9]+
|
2020-12-01 21:32:04 -07:00
|
|
|
|
2020-12-09 05:39:09 -07:00
|
|
|
# Build on the oldest supported images, so we have broader compatibility
|
2021-06-13 00:21:29 -07:00
|
|
|
# Upgrade to gcc-11 to prevent it from using its builtins (#14150)
|
2020-12-01 21:32:04 -07:00
|
|
|
jobs:
|
|
|
|
linux:
|
2022-08-09 08:05:56 -07:00
|
|
|
runs-on: ubuntu-20.04
|
2020-12-01 21:32:04 -07:00
|
|
|
outputs:
|
|
|
|
version: ${{ steps.build.outputs.version }}
|
|
|
|
release: ${{ steps.build.outputs.release }}
|
|
|
|
steps:
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/checkout@v3
|
2020-12-06 15:00:27 -07:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2020-12-01 21:32:04 -07:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
2022-05-12 16:55:27 -07:00
|
|
|
sudo apt-get install -y autoconf automake build-essential cmake gcc-11 gettext libtool-bin locales ninja-build pkg-config unzip
|
2021-08-13 17:08:46 -07:00
|
|
|
- if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly')
|
|
|
|
run: printf 'NVIM_BUILD_TYPE=Release\n' >> $GITHUB_ENV
|
|
|
|
- if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name == 'nightly')
|
|
|
|
run: printf 'NVIM_BUILD_TYPE=RelWithDebInfo\n' >> $GITHUB_ENV
|
2020-12-05 10:28:56 -07:00
|
|
|
- name: Build release
|
2020-12-01 21:32:04 -07:00
|
|
|
id: build
|
|
|
|
run: |
|
2021-08-13 17:08:46 -07:00
|
|
|
CC=gcc-11 make CMAKE_BUILD_TYPE=${NVIM_BUILD_TYPE} CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX:PATH="
|
2020-12-01 21:32:04 -07:00
|
|
|
printf '::set-output name=version::%s\n' "$(./build/bin/nvim --version | head -n 3 | sed -z 's/\n/%0A/g')"
|
2020-12-06 07:50:02 -07:00
|
|
|
printf '::set-output name=release::%s\n' "$(./build/bin/nvim --version | head -n 1)"
|
2020-12-05 10:28:56 -07:00
|
|
|
make DESTDIR="$GITHUB_WORKSPACE/build/release/nvim-linux64" install
|
2022-02-07 13:49:09 -07:00
|
|
|
cd "$GITHUB_WORKSPACE/build/"
|
|
|
|
cpack -C $NVIM_BUILD_TYPE
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/upload-artifact@v3
|
2020-12-01 21:32:04 -07:00
|
|
|
with:
|
2020-12-05 06:52:50 -07:00
|
|
|
name: nvim-linux64
|
2022-06-28 03:40:53 -07:00
|
|
|
path: |
|
|
|
|
build/nvim-linux64.tar.gz
|
|
|
|
build/nvim-linux64.deb
|
2020-12-01 21:32:04 -07:00
|
|
|
retention-days: 1
|
|
|
|
|
2020-12-04 18:55:31 -07:00
|
|
|
appimage:
|
2022-08-09 08:05:56 -07:00
|
|
|
runs-on: ubuntu-20.04
|
2020-12-04 18:55:31 -07:00
|
|
|
steps:
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/checkout@v3
|
2020-12-06 15:00:27 -07:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2020-12-04 18:55:31 -07:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
2022-05-12 16:55:27 -07:00
|
|
|
sudo apt-get install -y autoconf automake build-essential cmake gcc-11 gettext libtool-bin locales ninja-build pkg-config unzip
|
2020-12-05 10:28:56 -07:00
|
|
|
- if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly')
|
2021-06-13 00:21:29 -07:00
|
|
|
run: CC=gcc-11 make appimage-latest
|
2020-12-06 07:00:47 -07:00
|
|
|
- if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name == 'nightly')
|
2021-06-13 00:21:29 -07:00
|
|
|
run: CC=gcc-11 make appimage-nightly
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/upload-artifact@v3
|
2020-12-04 18:55:31 -07:00
|
|
|
with:
|
2020-12-05 06:52:50 -07:00
|
|
|
name: appimage
|
2022-06-28 03:40:53 -07:00
|
|
|
path: |
|
|
|
|
build/bin/nvim.appimage
|
|
|
|
build/bin/nvim.appimage.zsync
|
2020-12-04 18:55:31 -07:00
|
|
|
retention-days: 1
|
|
|
|
|
2020-12-01 21:32:04 -07:00
|
|
|
macOS:
|
ci(release): build a universal binary on macOS
After some tweaks to our dep builds, we can now build a universal binary
for macOS by using `CMAKE_OSX_ARCHITECTURES`. So, let's do that. This
requires a number of additional changes:
1. We need to build on macOS 11, since earlier versions do not support
building universal (M1 + Intel) binaries.
2. We need to provision a universal `libintl`. The linker will look for
an ARM64 version of this library when linking the `nvim` binary.
While we're here:
1. Link statically to `libintl`. This allows to to avoid having to do
any install name rewriting or codesigning to package Neovim.
2. Bump the `MACOSX_DEPLOYMENT_TARGET` to `11`. We're already using a
`libintl` built by Homebrew (through the pre-installed version of
`gettext`), and that is built for macOS 11.
In order to ensure we link to `libintl.a` instead of `libintl.dylib`, we
have to make sure that CMake can't find the latter. This ideally should
be a matter of doing `brew unlink gettext`. However, CMake is too adept
at finding things that Homebrew has installed (even when not linked), so
we have to do a bit more than that. This appears in the additional step
ensuring static linkage to `libintl`.
We end up breaking some Homebrew-installed software in the process, and
some of these software is called during our build (e.g. curl, git,
wget). To avoid any adverse effects, let's just uninstall them.
2022-06-24 08:48:17 -07:00
|
|
|
runs-on: macos-11
|
2020-12-01 21:32:04 -07:00
|
|
|
steps:
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/checkout@v3
|
2020-12-06 15:00:27 -07:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2020-12-01 21:32:04 -07:00
|
|
|
- name: Install brew packages
|
|
|
|
run: |
|
2022-03-07 07:34:12 -07:00
|
|
|
brew update --quiet
|
2020-12-01 21:32:04 -07:00
|
|
|
brew install automake ninja
|
2021-08-13 17:08:46 -07:00
|
|
|
- if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly')
|
|
|
|
run: printf 'NVIM_BUILD_TYPE=Release\n' >> $GITHUB_ENV
|
|
|
|
- if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name == 'nightly')
|
|
|
|
run: printf 'NVIM_BUILD_TYPE=RelWithDebInfo\n' >> $GITHUB_ENV
|
ci(release): build a universal binary on macOS
After some tweaks to our dep builds, we can now build a universal binary
for macOS by using `CMAKE_OSX_ARCHITECTURES`. So, let's do that. This
requires a number of additional changes:
1. We need to build on macOS 11, since earlier versions do not support
building universal (M1 + Intel) binaries.
2. We need to provision a universal `libintl`. The linker will look for
an ARM64 version of this library when linking the `nvim` binary.
While we're here:
1. Link statically to `libintl`. This allows to to avoid having to do
any install name rewriting or codesigning to package Neovim.
2. Bump the `MACOSX_DEPLOYMENT_TARGET` to `11`. We're already using a
`libintl` built by Homebrew (through the pre-installed version of
`gettext`), and that is built for macOS 11.
In order to ensure we link to `libintl.a` instead of `libintl.dylib`, we
have to make sure that CMake can't find the latter. This ideally should
be a matter of doing `brew unlink gettext`. However, CMake is too adept
at finding things that Homebrew has installed (even when not linked), so
we have to do a bit more than that. This appears in the additional step
ensuring static linkage to `libintl`.
We end up breaking some Homebrew-installed software in the process, and
some of these software is called during our build (e.g. curl, git,
wget). To avoid any adverse effects, let's just uninstall them.
2022-06-24 08:48:17 -07:00
|
|
|
- name: Provision universal `libintl`
|
|
|
|
run: |
|
|
|
|
GETTEXT_PREFIX="$(brew --prefix gettext)"
|
|
|
|
printf 'GETTEXT_PREFIX=%s\n' "$GETTEXT_PREFIX" >> $GITHUB_ENV
|
|
|
|
bottle_tag="arm64_big_sur"
|
|
|
|
brew fetch --bottle-tag="$bottle_tag" gettext
|
|
|
|
cd "$(mktemp -d)"
|
|
|
|
tar xf "$(brew --cache)"/**/*gettext*${bottle_tag}*.tar.gz
|
|
|
|
lipo gettext/*/lib/libintl.a "${GETTEXT_PREFIX}/lib/libintl.a" -create -output libintl.a
|
|
|
|
mv -f libintl.a /usr/local/lib/
|
|
|
|
- name: Ensure static linkage to `libintl`
|
|
|
|
run: |
|
|
|
|
# We're about to mangle `gettext`, so let's remove any potentially broken
|
|
|
|
# installs (e.g. curl, git) as those could interfere with our build.
|
|
|
|
brew uninstall $(brew uses --installed --recursive gettext)
|
|
|
|
brew unlink gettext
|
|
|
|
ln -sf "$(brew --prefix)/opt/$(readlink "${GETTEXT_PREFIX}")/bin"/* /usr/local/bin/
|
2022-06-28 10:03:42 -07:00
|
|
|
ln -sf "$(brew --prefix)/opt/$(readlink "${GETTEXT_PREFIX}")/include"/* /usr/local/include/
|
ci(release): build a universal binary on macOS
After some tweaks to our dep builds, we can now build a universal binary
for macOS by using `CMAKE_OSX_ARCHITECTURES`. So, let's do that. This
requires a number of additional changes:
1. We need to build on macOS 11, since earlier versions do not support
building universal (M1 + Intel) binaries.
2. We need to provision a universal `libintl`. The linker will look for
an ARM64 version of this library when linking the `nvim` binary.
While we're here:
1. Link statically to `libintl`. This allows to to avoid having to do
any install name rewriting or codesigning to package Neovim.
2. Bump the `MACOSX_DEPLOYMENT_TARGET` to `11`. We're already using a
`libintl` built by Homebrew (through the pre-installed version of
`gettext`), and that is built for macOS 11.
In order to ensure we link to `libintl.a` instead of `libintl.dylib`, we
have to make sure that CMake can't find the latter. This ideally should
be a matter of doing `brew unlink gettext`. However, CMake is too adept
at finding things that Homebrew has installed (even when not linked), so
we have to do a bit more than that. This appears in the additional step
ensuring static linkage to `libintl`.
We end up breaking some Homebrew-installed software in the process, and
some of these software is called during our build (e.g. curl, git,
wget). To avoid any adverse effects, let's just uninstall them.
2022-06-24 08:48:17 -07:00
|
|
|
rm -f "$GETTEXT_PREFIX"
|
2020-12-05 10:28:56 -07:00
|
|
|
- name: Build release
|
2020-12-01 21:32:04 -07:00
|
|
|
run: |
|
ci(release): build a universal binary on macOS
After some tweaks to our dep builds, we can now build a universal binary
for macOS by using `CMAKE_OSX_ARCHITECTURES`. So, let's do that. This
requires a number of additional changes:
1. We need to build on macOS 11, since earlier versions do not support
building universal (M1 + Intel) binaries.
2. We need to provision a universal `libintl`. The linker will look for
an ARM64 version of this library when linking the `nvim` binary.
While we're here:
1. Link statically to `libintl`. This allows to to avoid having to do
any install name rewriting or codesigning to package Neovim.
2. Bump the `MACOSX_DEPLOYMENT_TARGET` to `11`. We're already using a
`libintl` built by Homebrew (through the pre-installed version of
`gettext`), and that is built for macOS 11.
In order to ensure we link to `libintl.a` instead of `libintl.dylib`, we
have to make sure that CMake can't find the latter. This ideally should
be a matter of doing `brew unlink gettext`. However, CMake is too adept
at finding things that Homebrew has installed (even when not linked), so
we have to do a bit more than that. This appears in the additional step
ensuring static linkage to `libintl`.
We end up breaking some Homebrew-installed software in the process, and
some of these software is called during our build (e.g. curl, git,
wget). To avoid any adverse effects, let's just uninstall them.
2022-06-24 08:48:17 -07:00
|
|
|
export MACOSX_DEPLOYMENT_TARGET="$(sw_vers -productVersion | cut -f1 -d.)"
|
|
|
|
OSX_FLAGS="-DCMAKE_OSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET} -DCMAKE_OSX_ARCHITECTURES=arm64\;x86_64"
|
|
|
|
make CMAKE_BUILD_TYPE=${NVIM_BUILD_TYPE} \
|
|
|
|
CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX:PATH= $OSX_FLAGS" \
|
|
|
|
DEPS_CMAKE_FLAGS="$OSX_FLAGS"
|
|
|
|
make DESTDIR="$GITHUB_WORKSPACE/build/release/nvim-macos" install
|
2022-07-22 07:08:11 -07:00
|
|
|
cd "$GITHUB_WORKSPACE/build/"
|
|
|
|
cpack -C "$NVIM_BUILD_TYPE"
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/upload-artifact@v3
|
2020-12-01 21:32:04 -07:00
|
|
|
with:
|
2020-12-05 06:52:50 -07:00
|
|
|
name: nvim-macos
|
2022-07-22 07:08:11 -07:00
|
|
|
path: build/nvim-macos.tar.gz
|
2020-12-01 21:32:04 -07:00
|
|
|
retention-days: 1
|
|
|
|
|
2020-12-30 21:16:32 -07:00
|
|
|
windows:
|
2021-10-23 18:38:58 -07:00
|
|
|
runs-on: windows-2019
|
2020-12-30 21:16:32 -07:00
|
|
|
env:
|
2021-04-20 19:57:41 -07:00
|
|
|
DEPS_BUILD_DIR: ${{ format('{0}/nvim-deps', github.workspace) }}
|
|
|
|
DEPS_PREFIX: ${{ format('{0}/nvim-deps/usr', github.workspace) }}
|
2022-07-18 06:18:15 -07:00
|
|
|
CMAKE_BUILD_TYPE: "RelWithDebInfo"
|
2020-12-30 21:16:32 -07:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- config: MSVC_64
|
|
|
|
archive: nvim-win64
|
|
|
|
name: windows (${{ matrix.config }})
|
|
|
|
steps:
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/checkout@v3
|
2020-12-30 21:16:32 -07:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-07-18 06:18:15 -07:00
|
|
|
- name: Build deps
|
|
|
|
run: .\ci\build.ps1 -BuildDeps
|
|
|
|
- name: build package
|
|
|
|
run: .\ci\build.ps1 -Package
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/upload-artifact@v3
|
2020-12-30 21:16:32 -07:00
|
|
|
with:
|
|
|
|
name: ${{ matrix.archive }}
|
2022-06-28 03:40:53 -07:00
|
|
|
path: |
|
|
|
|
build/${{ matrix.archive }}.msi
|
|
|
|
build/${{ matrix.archive }}.zip
|
2022-02-07 13:49:09 -07:00
|
|
|
retention-days: 1
|
2020-12-30 21:16:32 -07:00
|
|
|
|
2020-12-01 21:32:04 -07:00
|
|
|
publish:
|
2020-12-30 21:16:32 -07:00
|
|
|
needs: [linux, appimage, macOS, windows]
|
2022-08-09 08:05:56 -07:00
|
|
|
runs-on: ubuntu-latest
|
2021-10-17 19:55:46 -07:00
|
|
|
env:
|
|
|
|
GH_REPO: ${{ github.repository }}
|
2022-06-28 03:40:53 -07:00
|
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2021-04-20 21:32:38 -07:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2020-12-01 21:32:04 -07:00
|
|
|
steps:
|
2021-10-17 19:55:46 -07:00
|
|
|
# Must perform checkout first, since it deletes the target directory
|
|
|
|
# before running, and would therefore delete the downloaded artifacts
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/checkout@v3
|
2021-10-17 19:55:46 -07:00
|
|
|
|
2022-05-20 20:45:10 -07:00
|
|
|
- uses: actions/download-artifact@v3
|
2021-10-17 19:55:46 -07:00
|
|
|
|
|
|
|
- name: Install dependencies
|
2022-06-28 03:40:53 -07:00
|
|
|
run: sudo apt-get update && sudo apt-get install -y gettext-base
|
2021-10-17 19:55:46 -07:00
|
|
|
|
2020-12-05 09:47:03 -07:00
|
|
|
- if: github.event_name == 'workflow_dispatch'
|
|
|
|
run: echo "TAG_NAME=${{ github.event.inputs.tag_name }}" >> $GITHUB_ENV
|
2020-12-06 07:00:47 -07:00
|
|
|
- if: github.event_name == 'schedule'
|
2020-12-05 09:47:03 -07:00
|
|
|
run: echo 'TAG_NAME=nightly' >> $GITHUB_ENV
|
2020-12-05 09:48:07 -07:00
|
|
|
- if: github.event_name == 'push'
|
|
|
|
run: |
|
|
|
|
TAG_NAME=${{ github.ref }}
|
|
|
|
echo "TAG_NAME=${TAG_NAME#refs/tags/}" >> $GITHUB_ENV
|
2020-12-05 09:47:03 -07:00
|
|
|
- if: env.TAG_NAME == 'nightly'
|
2021-10-17 19:55:46 -07:00
|
|
|
run: |
|
|
|
|
(echo 'SUBJECT=Nvim development (prerelease) build';
|
|
|
|
echo 'PRERELEASE=--prerelease') >> $GITHUB_ENV
|
2021-10-17 21:04:58 -07:00
|
|
|
gh release delete nightly --yes || true
|
2021-11-02 04:25:22 -07:00
|
|
|
git push origin :nightly || true
|
2020-12-05 09:47:03 -07:00
|
|
|
- if: env.TAG_NAME != 'nightly'
|
2021-10-17 19:55:46 -07:00
|
|
|
run: |
|
|
|
|
(echo 'SUBJECT=Nvim release build';
|
|
|
|
echo 'PRERELEASE=') >> $GITHUB_ENV
|
2021-10-17 21:04:58 -07:00
|
|
|
gh release delete stable --yes || true
|
2021-11-02 04:25:22 -07:00
|
|
|
git push origin :stable || true
|
2021-07-01 09:33:51 -07:00
|
|
|
# `sha256sum` outputs <sha> <path>, so we cd into each dir to drop the
|
|
|
|
# containing folder from the output.
|
|
|
|
- name: Generate Linux64 SHA256 checksums
|
|
|
|
run: |
|
|
|
|
cd ./nvim-linux64
|
|
|
|
sha256sum nvim-linux64.tar.gz > nvim-linux64.tar.gz.sha256sum
|
2022-02-07 13:49:09 -07:00
|
|
|
echo "SHA_LINUX_64_TAR=$(cat nvim-linux64.tar.gz.sha256sum)" >> $GITHUB_ENV
|
|
|
|
sha256sum nvim-linux64.deb > nvim-linux64.deb.sha256sum
|
|
|
|
echo "SHA_LINUX_64_DEB=$(cat nvim-linux64.deb.sha256sum)" >> $GITHUB_ENV
|
2021-07-01 09:33:51 -07:00
|
|
|
- name: Generate App Image SHA256 checksums
|
|
|
|
run: |
|
|
|
|
cd ./appimage
|
|
|
|
sha256sum nvim.appimage > nvim.appimage.sha256sum
|
|
|
|
echo "SHA_APP_IMAGE=$(cat nvim.appimage.sha256sum)" >> $GITHUB_ENV
|
|
|
|
- name: Generate App Image Zsync SHA256 checksums
|
|
|
|
run: |
|
|
|
|
cd ./appimage
|
|
|
|
sha256sum nvim.appimage.zsync > nvim.appimage.zsync.sha256sum
|
|
|
|
echo "SHA_APP_IMAGE_ZSYNC=$(cat nvim.appimage.zsync.sha256sum)" >> $GITHUB_ENV
|
|
|
|
- name: Generate macOS SHA256 checksums
|
|
|
|
run: |
|
|
|
|
cd ./nvim-macos
|
|
|
|
sha256sum nvim-macos.tar.gz > nvim-macos.tar.gz.sha256sum
|
|
|
|
echo "SHA_MACOS=$(cat nvim-macos.tar.gz.sha256sum)" >> $GITHUB_ENV
|
|
|
|
- name: Generate Win64 SHA256 checksums
|
|
|
|
run: |
|
|
|
|
cd ./nvim-win64
|
|
|
|
sha256sum nvim-win64.zip > nvim-win64.zip.sha256sum
|
2022-02-07 13:49:09 -07:00
|
|
|
echo "SHA_WIN_64_ZIP=$(cat nvim-win64.zip.sha256sum)" >> $GITHUB_ENV
|
|
|
|
sha256sum nvim-win64.msi > nvim-win64.msi.sha256sum
|
|
|
|
echo "SHA_WIN_64_MSI=$(cat nvim-win64.msi.sha256sum)" >> $GITHUB_ENV
|
2021-10-17 19:55:46 -07:00
|
|
|
- name: Publish release
|
|
|
|
env:
|
|
|
|
NVIM_VERSION: ${{ needs.linux.outputs.version }}
|
2022-01-12 05:11:47 -07:00
|
|
|
DEBUG: api
|
2021-10-17 19:55:46 -07:00
|
|
|
run: |
|
|
|
|
envsubst < "$GITHUB_WORKSPACE/.github/workflows/notes.md" > "$RUNNER_TEMP/notes.md"
|
2021-11-06 12:38:46 -07:00
|
|
|
gh release create $TAG_NAME $PRERELEASE --notes-file "$RUNNER_TEMP/notes.md" --title "$SUBJECT" --target $GITHUB_SHA nvim-macos/* nvim-linux64/* appimage/* nvim-win64/*
|
2021-10-17 20:39:00 -07:00
|
|
|
if [ "$TAG_NAME" != "nightly" ]; then
|
2021-11-06 12:38:46 -07:00
|
|
|
gh release create stable $PRERELEASE --notes-file "$RUNNER_TEMP/notes.md" --title "$SUBJECT" --target $GITHUB_SHA nvim-macos/* nvim-linux64/* appimage/* nvim-win64/*
|
2021-10-17 20:39:00 -07:00
|
|
|
fi
|