Skip to content

Commit 5d84ddc

Browse files
authored
build: adapt release to x86_64 rename (#21)
1 parent 75dd14c commit 5d84ddc

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/notes.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@ ${NVIM_VERSION}
44

55
## Install
66

7-
### Linux (x64)
7+
### Linux (x86_64)
88
#### AppImage
9-
1. Download **nvim.appimage**
10-
2. Run `chmod u+x nvim.appimage && ./nvim.appimage`
9+
1. Download **nvim-linux-x86_64.appimage**
10+
2. Run `chmod u+x nvim-linux-x86_64.appimage && ./nvim-linux-x86_64.appimage`
1111
- If your system does not have FUSE you can [extract the appimage](https://github.com/AppImage/AppImageKit/wiki/FUSE#type-2-appimage):
1212
```
13-
./nvim.appimage --appimage-extract
13+
./nvim-linux-x86_64.appimage --appimage-extract
1414
./squashfs-root/usr/bin/nvim
1515
```
1616
1717
#### Tarball
1818
19-
1. Download **nvim-linux64.tar.gz**
20-
2. Extract: `tar xzvf nvim-linux64.tar.gz`
21-
3. Run `./nvim-linux64/bin/nvim`
19+
1. Download **nvim-linux-x86_64.tar.gz**
20+
2. Extract: `tar xzvf nvim-linux-x86_64.tar.gz`
21+
3. Run `./nvim-linux-x86_64/bin/nvim`
2222
2323
#### Debian Package
2424
25-
1. Download **nvim-linux64.deb**
26-
2. Install the package using `sudo apt install ./nvim-linux64.deb`
25+
1. Download **nvim-linux-x86_64.deb**
26+
2. Install the package using `sudo apt install ./nvim-linux-x86_64.deb`
2727
3. Run `nvim`

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,16 +89,16 @@ jobs:
8989
with:
9090
name: appimage
9191
path: |
92-
build/bin/nvim.appimage
93-
build/bin/nvim.appimage.zsync
92+
build/bin/nvim-linux-x86_64.appimage
93+
build/bin/nvim-linux-x86_64.appimage.zsync
9494
retention-days: 1
9595

9696
- uses: actions/upload-artifact@v4
9797
with:
9898
name: nvim-linux64
9999
path: |
100-
build/nvim-linux64.tar.gz
101-
build/nvim-linux64.deb
100+
build/nvim-linux-x86_64.tar.gz
101+
build/nvim-linux-x86_64.deb
102102
retention-days: 1
103103

104104
- name: Export version

0 commit comments

Comments
 (0)