Skip to content

Commit

Permalink
fix(ci): macOS CI fails with "Unrecognized archive format"
Browse files Browse the repository at this point in the history
    Run curl -LO 'https://github.com/neovim/neovim/releases/download/nightly/nvim-macos.tar.gz'
    tar: Error opening archive: Unrecognized archive format

ref: neovim/neovim@036f86f
  • Loading branch information
justinmk committed Mar 26, 2024
1 parent a66140b commit de7ecb4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
fail-fast: false
matrix:
node: ['14', '16', '18']
os: ['ubuntu-latest', 'macos-11', 'windows-latest']
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
include:
- os: ubuntu-latest
NIGHTLY: nvim-linux64.tar.gz
NVIM_BIN_PATH: nvim-linux64/bin
EXTRACT: tar xzf
- os: macos-11
NIGHTLY: nvim-macos.tar.gz
NVIM_BIN_PATH: nvim-macos/bin
- os: macos-latest
NIGHTLY: nvim-macos-x86_64.tar.gz
NVIM_BIN_PATH: nvim-macos-x86_64/bin
EXTRACT: tar xzf
- os: windows-latest
NIGHTLY: nvim-win64.zip
Expand Down

0 comments on commit de7ecb4

Please sign in to comment.