Generate and Push Publications #194
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: Generate and Push Publications | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| publication_ids: | |
| description: 'Publication IDs (comma-separated)' | |
| required: false | |
| env: | |
| PUBLICATION_IDS: ${{ github.event.inputs.publication_ids }} | |
| API_TOKEN: ${{ secrets.API_TOKEN }} | |
| jobs: | |
| generate_and_publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - name: Setup Python 3.10 | |
| uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: "3.10" | |
| - name: Run SuttaPublisher | |
| run: make run $API_TOKEN $PUBLICATION_IDS |