File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 53
53
run : |
54
54
$tmp_file = New-TemporaryFile
55
55
"console.log('success')" | Out-File -FilePath $tmp_file -Encoding utf8
56
- $output = (docker run --rm -v "${{ github.workspace }}$ tmp_file:/app/index.js" node:${{ matrix.version }}-${{ matrix.variant }} app/index.js)
56
+ $output = (docker run --rm -v "${tmp_file} :/app/index.js" node:${{ matrix.version }}-${{ matrix.variant }} app/index.js)
57
57
if ($output -ne 'success') {
58
58
exit 1
59
59
}
@@ -103,7 +103,7 @@ jobs:
103
103
run : |
104
104
$tmp_file = New-TemporaryFile
105
105
"console.log('success')" | Out-File -FilePath $tmp_file -Encoding utf8
106
- $output = (docker run --rm -v "${{ github.workspace }}${ tmp_file}:/app/index.js" node:${{ matrix.version }}-${{ matrix.variant }} app/index.js)
106
+ $output = (docker run --rm -v "${tmp_file}:/app/index.js" node:${{ matrix.version }}-${{ matrix.variant }} app/index.js)
107
107
if ($output -ne 'success') {
108
108
exit 1
109
109
}
You can’t perform that action at this time.
0 commit comments