Skip to content

Correct path spelling #1

Correct path spelling

Correct path spelling #1

Workflow file for this run

name: ci
on: push
jobs:
deploy:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
password: ${{ secrets.SSH_PASSWORD }}
port: ${{ secrets.SSH_PORT }}
script: |
cd ~/dFlow
git reset --hard origin/main
git pull https://${{ secrets.CLONE_TOKEN }}@github.com/robotics-4-all/dFlow main
docker build -t dflow .
docker compose down
docker compose build
docker compose up -d