From 74034fd4e228b1e1d80a3739b10c2d3cf0667de2 Mon Sep 17 00:00:00 2001 From: Maxime Armstrong <46797220+maximearmstrong@users.noreply.github.com> Date: Tue, 23 Jul 2024 11:18:00 -0400 Subject: [PATCH] Update deploy.yml --- .github/workflows/deploy.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 68b8f5d..552dd24 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -40,9 +40,19 @@ jobs: uses: actions/checkout@v3 with: ref: ${{ github.head_ref }} - sparse-checkout: 'jaffle_dagster' path: project-repo - + + - name: Move Dagster folder to root + run: | + cd project-repo + ls -lah + shopt -s dotglob + mv jaffle_dagster/* tmp_jaffle_dagster + rm -rf jaffle_dagster + mv tmp_jaffle_dagster/* . + ls -lah + cd .. + - name: Python Executable Deploy if: steps.prerun.outputs.result == 'pex-deploy' uses: dagster-io/dagster-cloud-action/actions/build_deploy_python_executable@v0.1