fix: pass secrets explicitly #3
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: Deploy MCP Server (Production) | |
| on: | |
| push: | |
| branches: | |
| - master # Trigger only on pushes to the master branch | |
| jobs: | |
| deploy: | |
| name: Deploy MCP Server | |
| uses: ./.github/workflows/deploy-mcp-server.yml | |
| # Pass secrets explicitly to the called workflow's 'secrets' input | |
| secrets: | |
| CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
| CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} |