From 114ab386f6848c9137a8260a3ad94974f0d7c213 Mon Sep 17 00:00:00 2001 From: Maxime Armstrong <46797220+maximearmstrong@users.noreply.github.com> Date: Tue, 23 Jul 2024 11:07:46 -0400 Subject: [PATCH] Update deploy.yml --- .github/workflows/deploy.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e88db3e..0504b92 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -41,6 +41,15 @@ jobs: with: ref: ${{ github.head_ref }} path: project-repo + + - name: Move dagster folder to root + run: | + ls -lah + shopt -s dotglob + mv jaffle_dagster/* tmp_jaffle_dagster + rm -rf jaffle_dagster + mv tmp_jaffle_dagster/* . + ls -lah - name: Python Executable Deploy if: steps.prerun.outputs.result == 'pex-deploy'