Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/pypi_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,21 @@ jobs:
- name: Publish to PyPI
if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.event.inputs.publish == 'true')
uses: pypa/gh-action-pypi-publish@v1.13.0

deploy_cloud_mcp:
name: Deploy Cloud MCP
needs: publish_to_pypi
if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.event.inputs.publish == 'true')
Comment thread
aaronsteers marked this conversation as resolved.
runs-on: ubuntu-latest
permissions: {}
steps:
- name: Wait for PyPI availability
run: sleep 120

Comment thread
aaronsteers marked this conversation as resolved.
Outdated
- name: Trigger cloud-mcp deploy
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # v3
with:
token: ${{ secrets.GITHUB_CI_WORKFLOW_TRIGGER_PAT }}
repository: airbytehq/airbyte-ops-mcp
event-type: deploy-cloud-mcp
client-payload: '{"mcp-server": "cloud-mcp"}'
Loading