diff --git a/.github/workflows/Deploy.yml b/.github/workflows/Deploy.yml index 8b4ca6a..f840122 100644 --- a/.github/workflows/Deploy.yml +++ b/.github/workflows/Deploy.yml @@ -95,10 +95,19 @@ jobs: aws-secret-access-key: ${{ secrets.PROD_AWS_SECRET_ACCESS_KEY }} aws-region: eu-west-2 + - name: Check Disk Usage + run: | + df -h / + du -sh /* 2>/dev/null | sort -hr | head -10 + uname -m # Bonus: Confirms x64 vs. aarch64 + - name: DVC Pull run: | cd modules/ml-pipeline/src/pipeline dvc pull -r ${{ steps.set_runtime_environment.outputs.runtime_environment }} + cd data/model + ls + rm -r allmodels - name: Setup Docker uses: docker/setup-buildx-action@v1