diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index c14a4e7..c03485e 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -30,6 +30,11 @@ jobs: python-version: '3.11' - name: Install Requirements for personal_website and reflex run: pip install '${{ github.event.inputs.reflex_dep || env.REFLEX_DEP }}' -r env/requirements.txt + - name: Rename the directory + run: | + cd .. + mv jacob-pieniazek.com personal_website + cd personal_website - name: Init Website for personal_website run: reflex init - name: Export the website diff --git a/.github/workflows/regression-tests.yml b/.github/workflows/regression-tests.yml index 2d7d751..a352c92 100644 --- a/.github/workflows/regression-tests.yml +++ b/.github/workflows/regression-tests.yml @@ -24,6 +24,11 @@ jobs: python-version: '3.11' - name: Install Requirements for personal_website run: pip install -r env/requirements.txt + - name: Rename the directory + run: | + cd .. + mv jacob-pieniazek.com personal_website + cd personal_website - name: Init Website for personal_website run: reflex init - name: Export the website