chore: specify which exporter to use when processing Org files #12
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: Update repository | |
| on: [push, workflow_dispatch] | |
| jobs: | |
| find-talks: | |
| name: Find all talks | |
| runs-on: ubuntu-latest | |
| outputs: | |
| pdfs: ${{ steps.find-pdfs.outputs.matrix }} | |
| orgs: ${{ steps.find-orgs.outputs.matrix }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Find all PDF talks | |
| id: find-pdfs | |
| run: | | |
| find . -name 'index.pdf' \ | |
| | xargs dirname \ | |
| | xargs basename -a \ | |
| | jq -R \ | |
| | jq -cs '{ "talk": . }' \ | |
| > matrix.json | |
| echo "matrix=$(cat matrix.json)" >> $GITHUB_OUTPUT | |
| - name: Find all Org-mode talks | |
| id: find-orgs | |
| run: | | |
| find . -name 'index.*.org' \ | |
| | xargs dirname \ | |
| | xargs basename -a \ | |
| | jq -R \ | |
| | jq -cs '{ "talk": . }' \ | |
| > matrix.json | |
| echo "matrix=$(cat matrix.json)" >> $GITHUB_OUTPUT | |
| build-pdfs: | |
| name: Build PDF talks | |
| needs: | |
| - find-talks | |
| strategy: | |
| matrix: ${{ fromJson(needs.find-talks.outputs.pdfs) }} | |
| uses: ./.github/workflows/build-pdf.yml | |
| with: | |
| name: ${{ matrix.talk }} | |
| build-orgs: | |
| name: Build Org-mode talks | |
| needs: | |
| - find-talks | |
| strategy: | |
| matrix: ${{ fromJson(needs.find-talks.outputs.orgs) }} | |
| uses: ./.github/workflows/build-org.yml | |
| with: | |
| name: ${{ matrix.talk }} | |
| deploy: | |
| name: Deploy to GitHub Pages | |
| if: github.ref == 'refs/heads/main' | |
| needs: | |
| - build-pdfs | |
| - build-orgs | |
| permissions: | |
| pages: write | |
| id-token: write | |
| uses: ./.github/workflows/deploy-pages.yml |