[github-actions] Add a scheduled build every 1st of the month so we always have an artifact
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5302c01..7aee501 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -1,6 +1,9 @@
 name: build
 
-on: [push]
+on:
+  push:
+  schedule:
+    - cron: '0 0 1 * *'
 
 jobs:
   build-linux-ubuntu: