Combined Build Release and Build PDF Manual #38
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: Combined Build Release and Build PDF Manual | |
| on: | |
| workflow_dispatch: # Allows manual trigger from the Actions tab | |
| jobs: | |
| # Job 1: Triggers the Windows EXE build | |
| build-executable: | |
| uses: ./.github/workflows/build-release.yml | |
| permissions: | |
| contents: write | |
| packages: write | |
| actions: write | |
| secrets: inherit | |
| # Job 2: Triggers the LaTeX compilation and Pages deploy | |
| build-documentation: | |
| uses: ./.github/workflows/build-pdf-manual.yml | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| secrets: inherit |