We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15addf0 commit 8815b05Copy full SHA for 8815b05
1 file changed
.github/workflows/main.yml
@@ -37,23 +37,9 @@ jobs:
37
python3 -m pip install --upgrade pip setuptools wheel
38
python3 -m pip install -r requirements.txt
39
40
- # Generate all statistics images with retry logic
41
- name: Generate images
42
run: |
43
- python3 --version
44
- echo "Starting image generation..."
45
-
46
- # Run with timeout and retry logic
47
- for i in {1..3}; do
48
- echo "Attempt $i of 3"
49
- timeout 300 python3 generate_images.py && break
50
- echo "Attempt $i failed, waiting 30 seconds before retry..."
51
- sleep 30
52
- done
53
54
- echo "Generation completed. Checking files:"
55
- ls -la *.svg || echo "No SVG files found"
56
+ python3 generate_images.py
57
env:
58
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
59
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments