Alloverse Documentation Site Deployment #294
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: Alloverse Documentation Site Deployment | |
on: | |
schedule: | |
- cron: '0 6 * * 1' | |
push: | |
branches: | |
- main | |
jobs: | |
github-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: GIT_LFS_SKIP_SMUDGE=1 git submodule update --init --remote | |
- run: rm -rf _generation/libs/allonet/bindeps | |
- run: sudo apt-get install -y luarocks | |
- run: sudo luarocks install ldoc | |
- run: ldoc -l _generation -x .md -f markdown _generation/libs | |
- uses: helaili/[email protected] | |
env: | |
JEKYLL_PAT: ${{ secrets.JEKYLL_PAT }} | |
- uses: sarisia/actions-status-discord@v1 | |
if: always() | |
with: | |
webhook: ${{ secrets.DISCORD_WEBHOOK }} |