-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Luadocs formatting * del useless quotes * typo * remove debug info
- Loading branch information
Showing
1 changed file
with
23 additions
and
32 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,51 +4,42 @@ on: push | |
|
||
jobs: | ||
generate-lua-docs: | ||
name: "Generate lua docs" | ||
name: Generate lua docs | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: Print GitHub context | ||
run: echo "$GITHUB_CONTEXT" | ||
env: | ||
GITHUB_CONTEXT: ${{ toJson(github) }} | ||
|
||
- name: "Generate lua docs with lua-language-server" | ||
shell: cmd | ||
- name: Setup GitHub | ||
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 | ||
# 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" | ||
git add . | ||
git commit -m "Updated generated lua docs" | ||
git push origin | ||
- name: "Fix wrong paths in lua docs" | ||
shell: pwsh | ||
- 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\\ | ||
sed -i 's#file:///d%3A/a/NoitaMP/NoitaMP/#../../#g' ${{ github.workspace }}\\docs\\lua-docs\\doc.md | ||
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 | ||
sed -i 's#file:///d%3A/a/NoitaMP/NoitaMP/#../../#g' ${{ github.workspace }}\\docs\\lua-docs\\doc.json | ||
git config --global user.name "github-actions[bot]" | ||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
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 "Updated generated lua docs" | ||
git commit -m "Generate lua docs" | ||
git push origin | ||
fix-markdown-issues: | ||
name: "Fix markdown errors" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Lint changelog file | ||
uses: docker://avtodev/markdown-lint:v1 |