Working on CI/CD #8
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: Publish Release | |
| # FIXME: How can I restrict actually publishing a releae to specific users/tags/branches? | |
| on: | |
| workflow_call: | |
| #workflow_run: | |
| # workflows: ["Release Trigger"] | |
| # types: ["completed"] | |
| # branches: | |
| # - 'releases/**' | |
| # - 'main' | |
| # - 'carl/**' # FIXME: Remove. This is for testing/development. | |
| # if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
| env: | |
| PYTHON_VERSION: "3.13" | |
| jobs: |