.github/workflows/cd.yml #15
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
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- production | |
jobs: | |
django: | |
name: Deploy Django | |
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: Deploy | |
uses: easingthemes/ssh-deploy@main | |
with: | |
SSH_PRIVATE_KEY: ${{ secrets.KEY }} | |
ARGS: "-rlgoDzvc -i" | |
SOURCE: "backend/" | |
TARGET: "/home/${{ secrets.USERNAME }}/backend/" | |
REMOTE_HOST: ${{ secrets.HOST }} | |
REMOTE_USER: ${{ secrets.USERNAME }} | |
REMOTE_PORT: ${{ secrets.PORT }} | |
SCRIPT_BEFORE: | | |
rm -rf backend/ | |
mkdir backend/ | |
sveltekit: | |
name: Deploy Sveltekit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/[email protected] | |
- name: Install packages and build | |
working-directory: ./frontend/ | |
run: npm i --omit=dev && npm run build | |
- name: Deploy | |
uses: easingthemes/ssh-deploy@main | |
with: | |
SSH_PRIVATE_KEY: ${{ secrets.KEY }} | |
ARGS: "-rlgoDzvc -i" | |
SOURCE: "./frontend/build/ ./package.json ./package-lock.json" | |
TARGET: "/home/${{ secrets.USERNAME }}/frontend/" | |
REMOTE_HOST: ${{ secrets.HOST }} | |
REMOTE_USER: ${{ secrets.USERNAME }} | |
REMOTE_PORT: ${{ secrets.PORT }} | |
SCRIPT_BEFORE: | | |
rm -rf ./frontend/ | |
mkdir ./frontend/ | |
SCRIPT_AFTER: | | |
cd ./frontend/ && npm ci --omit=dev | |