Add interactive RC promotion and release confirmation #76
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: danteev/texlive:latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - name: Install tools | |
| run: | | |
| apt-get update && apt-get install -y ack | |
| pip install --break-system-packages recipemd | |
| - name: Validate recipes | |
| run: make check RECIPEMD=recipemd | |
| - name: Build PDF | |
| run: make pdf | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: cookbook-pdf | |
| path: build/pdf/cookbook.pdf |