We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b9ef96 commit e6dd5c6Copy full SHA for e6dd5c6
1 file changed
action.yml
@@ -93,12 +93,14 @@ runs:
93
shell: powershell
94
- name: Run
95
run: >-
96
+ $eventPath = Split-Path -Path "${env:GITHUB_EVENT_PATH}" -Parent;
97
+
98
docker run
99
${{ steps.settings.outputs.default_environment_variables }}
100
${{ steps.settings.outputs.extra_args }}
101
--rm
102
--memory=${{ inputs.memory }}
- -v C:\a\_temp\_github_workflow:C:\a\_temp\_github_workflow
103
+ -v $eventPath:$eventPath
104
-v ${{ steps.settings.outputs.workspace_path }}:${{ steps.settings.outputs.mapping_path }}
105
-w ${{ steps.settings.outputs.work_path }}
106
${{ inputs.image }}
0 commit comments