Django - Deployment and Production
You have this GitHub Actions workflow snippet:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: python manage.py test
- name: Deploy
run: ./deploy.sh
But the deploy step never runs even if tests pass. What is the most likely cause?