We add assets with the releases, e.g. the last release 1.3.0 has the two additional assets PaNET.owl and PaNET_reasoned.owl. But apparently we didn't specify the MIME type while adding these assets in the release, so GitHub will deliver them as application/octet-stream, which is the default:
$ curl --location --no-progress-meter --dump-header - --output /dev/null https://github.com/pan-ontologies/PaNET/releases/download/v1.3.0/PaNET.owl
HTTP/1.1 200 Connection established
[...]
HTTP/2 200
[...]
content-type: application/octet-stream
content-length: 341600
We add assets with the releases, e.g. the last release 1.3.0 has the two additional assets
PaNET.owlandPaNET_reasoned.owl. But apparently we didn't specify the MIME type while adding these assets in the release, so GitHub will deliver them asapplication/octet-stream, which is the default: