From fce74f509dccac97b976bc5cdf0c8fee2e1d633b Mon Sep 17 00:00:00 2001 From: Simon Hauser Date: Mon, 25 Apr 2022 22:24:14 +0200 Subject: [PATCH] ci: fix docgen after tjdevries/tree-sitter-lua/pull/48 --- .github/workflows/docgen.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/docgen.yml b/.github/workflows/docgen.yml index 09ab74d..b00bf44 100644 --- a/.github/workflows/docgen.yml +++ b/.github/workflows/docgen.yml @@ -39,9 +39,7 @@ jobs: run: | # We have to build the parser every single time to keep up with parser changes cd ~/.local/share/nvim/site/pack/vendor/start/tree-sitter-lua - mkdir -p build parser - cc -o ./build/parser.so -I./src src/parser.c src/scanner.cc -shared -Os -lstdc++ -fPIC - ln -s ../build/parser.so parser/lua.so + make dist cd - - name: Generating docs