Skip to content

add port

add port #11

Workflow file for this run

name: Deploy to Render
on:
push:
branches:
- retina # Change to your deployment branch
jobs:
deploy-to-render:

Check failure on line 9 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / Deploy to Render

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 9, Col: 3): The workflow must contain at least one job with no dependencies.
needs: build-and-push # Ensure this runs only after the Docker image is pushed
runs-on: ubuntu-latest
steps:
- name: Trigger Render Deployment
run: |
curl -X POST "$RENDER_DEPLOY_HOOK"
env:
RENDER_DEPLOY_HOOK: ${{ secrets.RENDER_DEPLOY_HOOK }}