From 802db7e04d0583b50950ba4fc6c657a0a8364f98 Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Tue, 15 Sep 2020 13:19:12 +0200 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 39423fad8..e18b2f676 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,8 +40,6 @@ jobs: git checkout develop fi git pull - cd $GITHUB_WORKSPACE - ln -s /home/runner/omr - name: Build toolchain working-directory: ../../omr env: @@ -68,7 +66,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: ${{ matrix.OMR_TARGET }} - path: ./omr/${{ matrix.OMR_TARGET }}/source/bin + path: /home/runner/work/omr/${{ matrix.OMR_TARGET }}/source/bin - if: steps.branch_name.outputs.SOURCE_BRANCH == '' name: Deploy - Create directory uses: fifsky/ssh-action@master @@ -103,7 +101,7 @@ jobs: with: switches: -av --delete-after remote_path: deploy/release/${{env.SOURCE_TAG}}/${{matrix.OMR_TARGET}} - path: ./omr/${{matrix.OMR_TARGET}}/source/bin/ + path: ../../home/runner/work/omr/${{matrix.OMR_TARGET}}/source/bin/ remote_key: ${{ secrets.PRIVATE_KEY }} remote_user: deploy remote_host: ${{ secrets.OMR_DEPLOY_HOST }} @@ -119,7 +117,7 @@ jobs: with: switches: -av --delete-after remote_path: deploy/${{env.SOURCE_BRANCH}}/${{env.OMR_KERNEL}}/${{matrix.OMR_TARGET}} - path: ./omr/${{matrix.OMR_TARGET}}/source/bin/ + path: ../../home/runner/work/omr/${{matrix.OMR_TARGET}}/source/bin/ remote_key: ${{ secrets.PRIVATE_KEY }} remote_user: deploy remote_host: ${{ secrets.OMR_DEPLOY_HOST }}