We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22eee64 commit b60a70aCopy full SHA for b60a70a
.github/workflows/push.yml
@@ -50,7 +50,8 @@ jobs:
50
MAX_ATTEMPTS=5 # Maximum polling attempts (2 minutes each = 10 minutes)
51
ATTEMPT=0
52
STATUS="in_progress"
53
-
+
54
+ sleep 10 # give request a chance to trigger
55
while [[ "$ATTEMPT" -lt "$MAX_ATTEMPTS" && "$STATUS" != "completed" ]]; do
56
echo "Polling attempt #$((ATTEMPT + 1))"
57
ATTEMPT=$((ATTEMPT + 1))
@@ -87,9 +88,9 @@ jobs:
87
88
- name: Extract assignment zips
89
if: success()
90
run: |
- unzip artifacts.zip
91
- tar -xvf artifact.tar
92
- mv knock-plus.zip www/main/
+ unzip -l artifacts.zip
+ # tar -xvf artifact.tar
93
+ # mv knock-plus.zip www/main/
94
- name: Archive www
95
uses: actions/upload-pages-artifact@v3
96
with:
0 commit comments