diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0f13476..3270193 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -55,13 +55,14 @@ jobs: run: | wget https://github.com/lunarmodules/LDoc/archive/refs/tags/1.4.6.tar.gz && tar xf 1.4.6.tar.gz && - lua ./LDoc-1.4.6/ldoc.lua ./src/ + cd ./src/ + lua ./LDoc-1.4.6/ldoc.lua . - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./doc/ + publish_dir: ./src/doc/ publish: needs: "version_check" diff --git a/src/config.ld b/src/config.ld new file mode 100644 index 0000000..e51806e --- /dev/null +++ b/src/config.ld @@ -0,0 +1,15 @@ +title = "Tracker for Lua" +project = "Snowplow event tracker for Lua" + +description = [[ +With SnowplowTracker you can collect event data from your + Lua-based applications, Lua web servers/frameworks, or + from the Lua scripting layer within your games or apps. +]] + +file = { + "snowplow", + exclude = { + "snowplow/payload.lua" + } +} \ No newline at end of file