Run curl silent

This commit is contained in:
Sven-Hendrik Haase
2020-07-03 06:36:05 +02:00
parent 5788568237
commit bd83be724b
3 changed files with 3 additions and 4 deletions

View File

@@ -44,9 +44,8 @@ jobs:
...context.repo,
tag: "ci-test-${{ matrix.os }}",
})
const actual = child_process.execSync(`curl -L ${release.data.assets[0].browser_download_url}`)
const actual = child_process.execSync(`curl -Ls ${release.data.assets[0].browser_download_url}`).file.data
console.log(actual.toString('utf8'))
console.log(expected.toString('utf8'))
assert.equal(expected, actual)
- name: Clean up
if: ${{ always() }}