Skip to content

.github/workflows/cd.yml #5

.github/workflows/cd.yml

.github/workflows/cd.yml #5

Workflow file for this run

on:
workflow_dispatch:
push:
branches:
- production
jobs:
django:
name: Django build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r backend/requirements.txt
- name: Collect static files
working-directory: ./backend/
run: python manage.py collectstatic
- name: Test ssh
uses: appleboy/[email protected]
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
port: ${{ secrets.PORT }}
script: echo "this is a test"