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