The cron expression for every weekday
To run a job every weekday, use 0 0 * * 1-5. Read aloud it means: At 00:00 on Monday through Friday.
Field by field: minute 0 — minute 0; hour 0 — hour 0; day of month * — every day-of-month; month * — every month; day of week 1-5 — Monday through Friday.
Drop the expression into a crontab, a CI schedule, or anything else that speaks standard five-field cron syntax. The times above are in your local timezone — most cron daemons run in the server's timezone, so mind the difference when it matters.