From 24edc5d93f5d055b6e7226b38265cfe7037c7c8b Mon Sep 17 00:00:00 2001 From: Stephan Seitz Date: Sun, 10 Oct 2021 11:35:35 +0200 Subject: [PATCH] ci: upload artifacts before check This could provide better possibilities to investigate a failed CI. --- .../workflows/check-query-files-and-compilation.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check-query-files-and-compilation.yml b/.github/workflows/check-query-files-and-compilation.yml index 68a5670ff..c982e21b8 100644 --- a/.github/workflows/check-query-files-and-compilation.yml +++ b/.github/workflows/check-query-files-and-compilation.yml @@ -54,14 +54,14 @@ jobs: run: cp -r ~/AppData/Local/nvim/pack/nvim-treesitter/start/nvim-treesitter/parser/* parser shell: bash + - uses: actions/upload-artifact@v2 + with: + name: parsers-${{ matrix.os }}-${{ matrix.cc }}-x86_64 + path: parser/* + - name: Check query files (Windows) if: matrix.os == 'windows-latest' env: ALLOWED_INSTALLATION_FAILURES: haskell run: C:\\tools\\neovim\\Neovim\\bin\\nvim.exe --headless -c "luafile ./scripts/check-queries.lua" -c "q" - - uses: actions/upload-artifact@v2 - with: - name: parsers-${{ matrix.os }}-${{ matrix.cc }}-x86_64 - path: parser/* -