Skip to content

Commit

Permalink
updated site scaffold workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
benrochford committed Jan 15, 2025
1 parent e24411e commit e8d8c6a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/scripts/generate_site_scaffolds.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ def generate_scaffolds(csv_path):
debug_print(f"Working directory: {os.getcwd()}")

print(f"Reading CSV file: {csv_path}")
df = pd.read_csv(csv_path)
df = pd.read_csv(csv_path, header=0)
debug_print(f"CSV columns: {df.columns.tolist()}")
print(f"Read CSV file with {len(df)} rows")
validate_csv(df)

Expand Down

0 comments on commit e8d8c6a

Please sign in to comment.