Is there a way to store cache after some special step and then continue workflow ?
See original GitHub issueI have a job with the steps like:
job:
steps:
- checkout
- actions/cache@v2
- build
#- I'd like to store cache at this moment
- test
Is there a way to store cache after some special step and then continue workflow ?
Issue Analytics
- State:
- Created 2 years ago
- Reactions:15
- Comments:11 (4 by maintainers)
Top Results From Across the Web
Workflow caching and checkpointing
Nextflow caching and checkpointing allows re-entrancy into a workflow after a pipeline error or using new data, skipping steps that have been successfully ......
Read more >Just take the Cache and Run! Caching in 2018.3
Right click on this tool and select Cache and Run Workflow. This will re-run your workflow, so you can use this opportunity to...
Read more >Config best practices: dependency caching
Caching your dependencies between jobs can trim seconds or even minutes from your builds.
Read more >Caching dependencies to speed up workflows
To make your workflows faster and more efficient, you can create and use caches for dependencies and other commonly reused files.
Read more >How do I cache steps in GitHub actions?
You could add a cache step at the beginning of your workflow, then a step to build the contents of the directory if...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Same. Use case: install pnpm modules and then immediately store cache, before running the actual job which might fail
+1