From b1c9e6a6c95e01c40f8d52fa12a2ed9d5206e906 Mon Sep 17 00:00:00 2001 From: Manos Tsardoulias Date: Mon, 25 Nov 2024 15:22:15 +0200 Subject: [PATCH] Changed default path --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d329e1d..b7debe1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: push jobs: deploy: - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/master' runs-on: ubuntu-latest steps: - uses: appleboy/ssh-action@master @@ -15,8 +15,8 @@ jobs: port: ${{ secrets.SSH_PORT }} script: | cd ~/goal-dsl - git reset --hard origin/main - git pull https://${{ secrets.CLONE_TOKEN }}@github.com/robotics-4-all/goal-dsl main + git reset --hard origin/master + git pull https://${{ secrets.CLONE_TOKEN }}@github.com/robotics-4-all/goal-dsl master docker build -t goaldsl . docker compose down docker compose build