Merge pull request #1 from cvut/docs #58
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
| on: | |
| push: | |
| branches: ["master"] | |
| workflow_dispatch: | |
| concurrency: | |
| group: "comparch" | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| update: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Install | |
| run: sudo apt-get update && sudo apt-get install nodejs hugo rclone | |
| - name: Checkout | |
| uses: nschloe/action-cached-lfs-checkout@v1 | |
| - name: Checkout QtRvSim for manual | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: cvut/qtrvsim | |
| path: external-qtrvsim | |
| - name: Setup mdBook | |
| uses: peaceiris/actions-mdbook@v2 | |
| with: | |
| mdbook-version: "latest" | |
| - name: Cache NPM dependencies | |
| uses: actions/cache@master | |
| with: | |
| path: themes/geekblog/node_modules | |
| key: ${{ runner.OS }}-npm-cache-${{ hashFiles('themes/geekblog/package-lock.json') }} | |
| - name: Build theme | |
| working-directory: ${{ github.workspace }}/themes/geekblog | |
| run: npm install && npm run build | |
| - name: Build with Hugo | |
| run: hugo | |
| - name: Build QtRvSim Manual | |
| run: | | |
| mdbook build external-qtrvsim/docs/user | |
| mkdir -p public/qtrvsim/manual | |
| cp -a external-qtrvsim/docs/user/book/. public/qtrvsim/manual/ | |
| - name: Create ZIP Archive | |
| run: zip -r site.zip public/ | |
| - name: Send ZIP to Web for deployment | |
| run: | | |
| curl -X POST -H "Authorization: Bearer ${{ secrets.FtpPass }}" -F "file=@site.zip" http://eval.comparch.edu.cvut.cz:1111/github-actions/update-web |