Removed deploy to GH pages #61
This file contains 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: Continious Deployment | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
render-server-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy server | |
env: | |
URL: ${{ secrets.RENDER_DEPLOY_HOOK }} | |
run: | | |
curl -X GET "$URL" | |
- name: Delay before health check | |
run: sleep 30s | |
- name: Check server health | |
run: | | |
curl -sSf https://brickview.api.vasspass.net/health || exit 1 |