Skip to content

feat(post): bacground image modify #22

feat(post): bacground image modify

feat(post): bacground image modify #22

Workflow file for this run

name: Deploy
on:
push:
branches:
- develop
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy to server
uses: appleboy/[email protected]
with:
host: ${{ secrets.SSH_HOST }}
port: ${{ secrets.SSH_PORT }}
username: ${{ secrets.SSH_USER }}
key: ${{ secrets.SSH_KEY }}
script: |
cd ~/Backend
git checkout develop
git pull origin develop
docker compose build
docker compose down
docker compose up -d