From 9f048e408c6b497b2aacb1acd29ccabf208b16c7 Mon Sep 17 00:00:00 2001 From: Ron Rise Date: Wed, 14 May 2025 11:22:45 -0400 Subject: [PATCH] How is the target directory over 100 gigs? --- .gitea/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index a933780..18cc393 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -48,7 +48,7 @@ jobs: --volumes-from ${{ env.JOB_CONTAINER_NAME }} \ --network "${{ env.JOB_CONTAINER_NAME }}-DatabaseMigrations-network" \ -w ${{ github.workspace }} \ - siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@${{ env.JOB_CONTAINER_NAME }}-postgres:5432/postgres?sslmode=disable" -path db/migrations up + siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable" -path db/migrations up - name: Rollback Migrations run: | @@ -58,7 +58,7 @@ jobs: --volumes-from ${{ env.JOB_CONTAINER_NAME }} \ --network "${{ env.JOB_CONTAINER_NAME }}-DatabaseMigrations-network" \ -w ${{ github.workspace }} \ - siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@${{ env.JOB_CONTAINER_NAME }}-postgres:5432/postgres?sslmode=disable" -path db/migrations down --all + siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable" -path db/migrations down --all - name: Tear Down Support Containers if: always()