Deploy #1
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 | |
| on: | |
| workflow_run: | |
| workflows: ["CI"] | |
| types: | |
| - completed | |
| branches: [main, master] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
| steps: | |
| - name: Deploying to Production | |
| run: echo "Starting deployment to production environment..." | |
| # Add actual deployment steps here (e.g., Vercel, Netlify, GH Pages) | |
| - name: Completion | |
| run: echo "Deployment workflow triggered successfully." |