From 4d652260a39029ec430a717c4d67f8d6c9aa943e Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Mon, 15 Apr 2024 21:45:06 +0200 Subject: [PATCH] fix(ci): macOS CI fails with "Unrecognized archive format" Run curl -LO 'https://github.com/neovim/neovim/releases/download/nightly/nvim-macos.tar.gz' tar: Error opening archive: Unrecognized archive format ref https://github.com/neovim/neovim/commit/036f86feaccb25d8552c4bf4d216f7f2a9205325 ref https://github.com/neovim/node-client/commit/de7ecb4fc3ac966c96115123486457c609841215 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bcd42875..b747297c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,8 +43,8 @@ jobs: NVIM_BIN_PATH: nvim-linux64/bin EXTRACT: tar xzf - os: 'macos-latest' - NIGHTLY: nvim-macos.tar.gz - NVIM_BIN_PATH: nvim-macos/bin + 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