Merge pull request #401 from cameronr/main #172
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lemmy-help | |
on: [push] | |
env: | |
PLUGIN_NAME: auto-session | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
name: emmylua to vimdoc | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generating help | |
run: | | |
curl -Lq https://github.com/numToStr/lemmy-help/releases/latest/download/lemmy-help-x86_64-unknown-linux-gnu.tar.gz | tar xz | |
./lemmy-help ./lua/auto-session/config.lua ./lua/auto-session/autocmds.lua ./lua/auto-session/init.lua ./lua/auto-session/session-lens/init.lua ./lua/auto-session/session-lens/actions.lua > doc/${{env.PLUGIN_NAME}}.txt | |
- name: Commit | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
branch: ${{ github.head_ref }} | |
commit_message: "chore(docs): auto-generate vimdoc" | |
file_pattern: doc/*.txt |