We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3137066 commit 7f65ab1Copy full SHA for 7f65ab1
.github/workflows/build-test-windows.yml
@@ -103,8 +103,8 @@ jobs:
103
run: |
104
$tmp_file = New-TemporaryFile
105
"console.log('success')" | Out-File -FilePath $tmp_file -Encoding utf8
106
- Write-Host "Docker volume mount: $(${{ github.workspace }})$tmp_file:/app/index.js"
107
- $output = (docker run --rm -v "${{ github.workspace }}$tmp_file:/app/index.js" node:${{ matrix.version }}-${{ matrix.variant }} app/index.js)
+ Write-Host "Docker volume mount: $(${{ github.workspace }})${tmp_file}:/app/index.js"
+ $output = (docker run --rm -v "${{ github.workspace }}${tmp_file}:/app/index.js" node:${{ matrix.version }}-${{ matrix.variant }} app/index.js)
108
if ($output -ne 'success') {
109
exit 1
110
}
0 commit comments