Deploy again #2
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: Render Health Check | |
| on: | |
| push: | |
| branches: ['main'] | |
| workflow_dispatch: | |
| jobs: | |
| healthcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Wait for Render deploy | |
| run: sleep 25 | |
| - name: Health check | |
| run: | | |
| set -e | |
| curl -fsS "$RENDER_HEALTH_URL" |