From b60a70a186485a8dca68685b677c7e5ef3f0b689 Mon Sep 17 00:00:00 2001 From: David Van Horn Date: Mon, 11 Nov 2024 21:12:33 -0500 Subject: [PATCH] Trying to get unzip to work. --- .github/workflows/push.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index da02596c..79d406e5 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -50,7 +50,8 @@ jobs: MAX_ATTEMPTS=5 # Maximum polling attempts (2 minutes each = 10 minutes) ATTEMPT=0 STATUS="in_progress" - + + sleep 10 # give request a chance to trigger while [[ "$ATTEMPT" -lt "$MAX_ATTEMPTS" && "$STATUS" != "completed" ]]; do echo "Polling attempt #$((ATTEMPT + 1))" ATTEMPT=$((ATTEMPT + 1)) @@ -87,9 +88,9 @@ jobs: - name: Extract assignment zips if: success() run: | - unzip artifacts.zip - tar -xvf artifact.tar - mv knock-plus.zip www/main/ + unzip -l artifacts.zip + # tar -xvf artifact.tar + # mv knock-plus.zip www/main/ - name: Archive www uses: actions/upload-pages-artifact@v3 with: