fix: update all URLs to achillesalpha.onrender.com/ep, remove separat… #18
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 to Render | |
| on: | |
| push: | |
| branches: [ main, master ] | |
| pull_request: | |
| branches: [ main, master ] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Deploy to Render | |
| uses: johnbeynon/render-deploy-action@v0.0.8 | |
| with: | |
| service-id: ${{ secrets.RENDER_SERVICE_ID }} | |
| api-key: ${{ secrets.RENDER_API_KEY }} | |
| - name: Deployment Notification | |
| run: | | |
| echo "🚀 Deployed to https://execution-protocol.onrender.com/" | |
| echo "📱 Mobile-friendly site is now live" |