Browse Source

Debugging

master
Fábio Kaiser Rauber 2 weeks ago
parent
commit
c130690870
  1. 6
      .drone.yml

6
.drone.yml

@ -19,6 +19,12 @@ steps:
- ls -la .
- echo "Charts directory contents:"
- ls -la charts/ || echo "No charts/ directory found"
# Debug: List contents of charts/clamav/
- echo "Contents of charts/clamav/:"
- ls -la charts/clamav/ || echo "No clamav directory found"
# Debug: Explicitly check for v0.1.0 in clamav
- echo "Contents of charts/clamav/v0.1.0/:"
- ls -la charts/clamav/v0.1.0/ || echo "No v0.1.0 directory found in charts/clamav/"
# Find all versioned chart directories
- ALL_CHARTS=$$(find charts -maxdepth 2 -type d -regex '.*/v[0-9]+\.[0-9]+\.[0-9]+')
- "echo \"Detected charts: $ALL_CHARTS\""

Loading…
Cancel
Save