Skip to content

Commit

Permalink
Update installation notes
Browse files Browse the repository at this point in the history
  • Loading branch information
RenFraser committed Feb 16, 2022
1 parent e511bc5 commit 33639f2
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 6 deletions.
42 changes: 38 additions & 4 deletions .github/workflows/notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,26 @@ ${NVIM_VERSION}

### Windows

1. Extract **nvim-win64.zip**
2. Run `nvim-qt.exe`
#### Zip

1. Download **nvim-win64.zip**
2. Extract the zip.
3. Run `nvim-qt.exe`

#### MSI

1. Download **nvim-win64.msi**
2. Run the MSI
3. Add the Neovim location to your path.
- Default location is `C:\Program Files\Neovim`
4. Run `nvim` or `nvim.exe`

#### NSIS

1. Download **nvim-win64.exe**
2. Run the installer.
- Ensure that the option to add the installation location to your path is checked if it's your first installation.
3. Run `nvim` or `nvim.exe`

### macOS

Expand All @@ -17,6 +35,19 @@ ${NVIM_VERSION}

### Linux (x64)

#### Tarball

1. Download **nvim-linux64.tar.gz**
2. Extract: `tar xzvf nvim-linux64.tar.gz`
3. Run `./nvim-linux64/bin/nvim`

#### Debian Package

1. Download **nvim-linux64.deb**
2. Install the package using `sudo dpkg -i nvim-linux64.deb`
3. Run `nvim`

#### AppImage
1. Download **nvim.appimage**
2. Run `chmod u+x nvim.appimage && ./nvim.appimage`
- If your system does not have FUSE you can [extract the appimage](https://github.com/AppImage/AppImageKit/wiki/FUSE#type-2-appimage):
Expand All @@ -32,9 +63,12 @@ ${NVIM_VERSION}
## SHA256 Checksums
```
${SHA_LINUX_64}
${SHA_LINUX_64_TAR}
${SHA_LINUX_64_DEB}
${SHA_APP_IMAGE}
${SHA_APP_IMAGE_ZSYNC}
${SHA_MACOS}
${SHA_WIN_64}
${SHA_WIN_64_ZIP}
${SHA_WIN_64_MSI}
${SHA_WIN_64_EXE}
```
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
run: |
cd ./nvim-linux64
sha256sum nvim-linux64.tar.gz > nvim-linux64.tar.gz.sha256sum
echo "SHA_LINUX_64=$(cat nvim-linux64.tar.gz.sha256sum)" >> $GITHUB_ENV
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
- name: Generate App Image SHA256 checksums
Expand All @@ -223,7 +223,7 @@ jobs:
run: |
cd ./nvim-win64
sha256sum nvim-win64.zip > nvim-win64.zip.sha256sum
echo "SHA_WIN_64=$(cat nvim-win64.zip.sha256sum)" >> $GITHUB_ENV
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
sha256sum nvim-win64.exe > nvim-win64.exe.sha256sum
Expand Down

0 comments on commit 33639f2

Please sign in to comment.