Mount /github/workflow to docker action pods (#137)

* Mount /github/workflow to docker action pods, the same way as for container job pods

* Adjust tests
This commit is contained in:
Katarzyna
2024-03-14 12:36:27 +01:00
committed by GitHub
parent bb09a79b22
commit 99efdeca99
2 changed files with 20 additions and 2 deletions

View File

@@ -41,6 +41,11 @@ export function containerVolumes(
name: POD_VOLUME_NAME,
mountPath: '/github/file_commands',
subPath: '_temp/_runner_file_commands'
},
{
name: POD_VOLUME_NAME,
mountPath: '/github/workflow',
subPath: '_temp/_github_workflow'
}
)
return mounts