Removes Accept: application/octet-stream.

pull/1/head
tommie 2023-02-17 15:17:10 +01:00 committed by GitHub
parent 9efa33a2d0
commit 06dcd39dae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ jobs:
| jq -r '(.name + " " + .tarball_url)' \ | jq -r '(.name + " " + .tarball_url)' \
| ( | (
read release tarball_url read release tarball_url
wget --header='Accept: application/octet-stream' -O- "$tarball_url" | tar xz wget -O- "$tarball_url" | tar xz
echo "innernet_release=$release" >>"$GITHUB_OUTPUT" echo "innernet_release=$release" >>"$GITHUB_OUTPUT"
) )