wbh-community / wbhdoc

This is the document creator for the wbh-pandoc-template
MIT License
2 stars 1 forks source link

repair cronjob buid.yml #15

Closed polarvogel closed 1 year ago

polarvogel commented 1 year ago

build failed with cron, because 7 is no 'day of the week' (0-6). Sunday is 6, not 7.

kreativmonkey commented 1 year ago

In cron you can use 0-7 while Sunday is 0 ore 7: https://stackoverflow.com/questions/18919151/crontab-day-of-the-week-syntax but you are right, github uses the posix syntax where the week days are 0-6 and 0 is sunday ;-)

kreativmonkey commented 1 year ago

Thanks for the change!