github-actions[bot] is generating lua docs #143
This file contains 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: Generate lua docs | |
run-name: "github-actions[bot] is generating lua docs" | |
on: push | |
jobs: | |
generate-lua-docs: | |
name: Generate lua docs | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3.3.0 | |
- name: Setup GitHub | |
run: | | |
# https://api.github.com/users/github-actions%5Bbot%5D | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
- name: Generate lua docs with lua-language-server | |
shell: cmd | |
run: | | |
${{ github.workspace }}\\.building\\lua-language-server-3.6.18-win32-x64\\bin\\lua-language-server.exe ^ | |
--logpath \"${{ github.workspace }}\\docs\\lua-docs\" ^ | |
--configpath \"${{ github.workspace }}\\docs\\lua-docs\\lua-language-server-config.lua\" ^ | |
--doc \"${{ github.workspace }}\\mods\\noita-mp\\files\\scripts\" | |
cd ${{ github.workspace }}\\docs\\lua-docs\\ | |
del /f *.log | |
- name: Format lua docs | |
run: | | |
$env:Path += ";C:\Program Files\Git\usr\bin" | |
Get-Command sed | |
cd ${{ github.workspace }}\\docs\\lua-docs\\ | |
echo "Replacing filepaths" | |
sed -i 's#file:///d%3A/a/NoitaMP/NoitaMP/#${{ github.server_url }}/${{ github.repository }}#g' ${{ github.workspace }}\\docs\\lua-docs\\doc.md | |
sed -i 's#file:///d%3A/a/NoitaMP/NoitaMP/#${{ github.server_url }}/${{ github.repository }}#g' ${{ github.workspace }}\\docs\\lua-docs\\doc.json | |
echo "Adding #L's" | |
sed -i 's/.lua#/.lua#L/g' ${{ github.workspace }}\\docs\\lua-docs\\doc.md | |
echo "Replacing headers in .md" | |
sed -i 's#\# #\#\# #g' ${{ github.workspace }}\\docs\\lua-docs\\doc.md | |
- name: Commit and push changes | |
run: | | |
git add . | |
git commit -m "Generate lua docs" | |
git push origin |