top | item 42398622

(no title)

san1t1 | 1 year ago

I use an approach with Github Actions where if I need small amounts of persistent data between runs, I use a filesystem based off a fresh branch in the same repository.

That branch is rebased down to $tip so it shares no commits, and the 'database' doesn't affect development in trunk.

Obviously this doesn't work for significant data analysis, but if it's just a question of 'what was the state at the last run' it's cheap and easy.

discuss

order

snthpy|1 year ago

Thanks, that's a cool idea.