Fixes for random broken links #866
Workflow file for this run
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: Build the documentation from development branches | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/uyuni-project/uyuni-docs-builder:latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 #v4 | |
| - name: Build toolchain binary and generate configs | |
| run: task setup && task gen | |
| # ── Uyuni HTML ──────────────────────────────────────────────────────────── | |
| - name: Build Uyuni HTML documentation | |
| run: task publish:uyuni | |
| - name: Upload Uyuni HTML documentation | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #v7.0.1 | |
| with: | |
| name: uyuni-docs-html | |
| path: build/en/ | |
| retention-days: 1 | |
| # ── MLM HTML ────────────────────────────────────────────────────────────── | |
| - name: Build SUSE Multi-Linux Manager HTML documentation | |
| run: task publish:dsc | |
| - name: Upload SUSE Multi-Linux Manager HTML documentation | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #v7.0.1 | |
| with: | |
| name: mlm-docs-html | |
| path: build/en/ | |
| retention-days: 1 | |
| # ── PDFs — English only (for translator review) ─────────────────────────── | |
| - name: Build MLM PDFs (English) | |
| run: task pdf:mlm LANGUAGES=en | |
| - name: Collect MLM PDFs | |
| run: task pdf-collect:mlm LANGUAGES=en | |
| - name: Upload MLM PDFs (English) | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #v7.0.1 | |
| with: | |
| name: mlm-docs-pdf-en | |
| path: build/pdf/en/ | |
| retention-days: 1 | |
| - name: Build Uyuni PDFs (English) | |
| run: task pdf:uyuni LANGUAGES=en | |
| - name: Collect Uyuni PDFs | |
| run: task pdf-collect:uyuni LANGUAGES=en | |
| - name: Upload Uyuni PDFs (English) | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #v7.0.1 | |
| with: | |
| name: uyuni-docs-pdf-en | |
| path: build/pdf/en/ | |
| retention-days: 1 |