Skip to content

Commit b60a70a

Browse files
committed
Trying to get unzip to work.
1 parent 22eee64 commit b60a70a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/push.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ jobs:
5050
MAX_ATTEMPTS=5 # Maximum polling attempts (2 minutes each = 10 minutes)
5151
ATTEMPT=0
5252
STATUS="in_progress"
53-
53+
54+
sleep 10 # give request a chance to trigger
5455
while [[ "$ATTEMPT" -lt "$MAX_ATTEMPTS" && "$STATUS" != "completed" ]]; do
5556
echo "Polling attempt #$((ATTEMPT + 1))"
5657
ATTEMPT=$((ATTEMPT + 1))
@@ -87,9 +88,9 @@ jobs:
8788
- name: Extract assignment zips
8889
if: success()
8990
run: |
90-
unzip artifacts.zip
91-
tar -xvf artifact.tar
92-
mv knock-plus.zip www/main/
91+
unzip -l artifacts.zip
92+
# tar -xvf artifact.tar
93+
# mv knock-plus.zip www/main/
9394
- name: Archive www
9495
uses: actions/upload-pages-artifact@v3
9596
with:

0 commit comments

Comments
 (0)