Skip to content

Commit

Permalink
fix(ci): try to fix the wiki generator with luarocks
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed Mar 24, 2024
1 parent a8151f1 commit 27ac595
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/gendoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@ jobs:
neovim: true
version: ${{ matrix.version }}

- uses: leafo/gh-actions-lua@v9
- uses: leafo/gh-actions-luarocks@v4
with:
luaVersion: "luajit-2.1.0-beta3"

- name: Install all required modules
run: |
luarocks install neorg --deps-only
- name: Clone Wiki
uses: actions/checkout@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions docgen/minimal_init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ end
package.path = "../lua/?.lua;" .. "../lua/?/init.lua;" .. package.path
package.path = "../plenary.nvim/lua/?.lua;" .. package.path
package.path = "../nvim-treesitter/lua/?.lua;" .. package.path
package.path = "/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua;" .. package.path
package.path = "/usr/share/lua/5.1/?.so;" .. package.path

vim.cmd.TSInstallSync({
bang = true,
Expand Down

0 comments on commit 27ac595

Please sign in to comment.