GitHub as Storage and Actions as Compute?
2 points| bigEnotation | 1 year ago
As a solo contributor it seems to work ok, I was curious about potential drawbacks, and considerations I may want to consider if I wanted to start adding contributors, or merging dependabot PRs while a cron action was running heh.
solardev|1 year ago
I have a similar but minimal use case where some data is scraped and then committed into a repo via actions. I tried to modularize it so that's all that repo does. Another repo then fetches from that repo to actually console the data.
If I needed to build something like this for actual production use, I'd probably use a serverless worker (Vercel or Cloudflare) and store it in a cloud KV instead.
bigEnotation|1 year ago