ArtemSBulgakov / buildozer-action

GitHub Action to build your Python application with Buildozer
MIT License
73 stars 71 forks source link

please add a good example for caching #19

Closed RaSan147 closed 2 years ago

RaSan147 commented 2 years ago

There is a example for caching but not explained where to put it.

I'm using the fork of this repo, putting the cache part in anywhere in job section in the build.yml fails to cache since the main buildozer job is auto cleaning the files

ArtemSBulgakov commented 2 years ago

Hi. You can see example in https://github.com/kivymd/KitchenSink/blob/86b08cb248686e8a50cfd31dbdab521597b8e8cc/.github/workflows/main.yml#L24-L33

There are caching for global and local .buildozer directories.

RaSan147 commented 2 years ago

Thanks