Merge pull request #80 from StressLess-Team/development #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: Production | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| if: | | |
| !contains(github.event.head_commit.message, '[ci skip]') && | |
| !contains(github.event.head_commit.message, '[skip ci]') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🚀 Trigger Frontend Deploy on Render | |
| run: | | |
| curl -X POST ${{ secrets.RENDER_FRONTEND_HOOK }} | |
| - name: 🔧 Trigger Backend Deploy on Render | |
| run: | | |
| curl -X POST ${{ secrets.RENDER_BACKEND_HOOK }} |