Skip to content

Commit

Permalink
Trying to get unzip to work.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvanhorn committed Nov 12, 2024
1 parent 22eee64 commit b60a70a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit b60a70a

Please sign in to comment.