Equivalent of stashing/unstashing from jenkins

Is there an equivalent of stasing and unstashing known from Jenkins?

It allows for easy transfer of files between stages (through master node):

e.g. one stage can write stash includes: ‘files/*’, name: ‘binary’

and second stage can write:

unstash binary

and all files in files directory would magically reappear

Drone has a workspace, which is a docker volume shared between all pipeline steps
http://docs.drone.io/workspace/

Files written the the volume are accessible to subsequent pipeline steps.