d18ada4ee7
Docker Publish / docker (web, apps/web/Dockerfile, web) (push) Failing after 0s
Docker Publish / docker (api, apps/api/Dockerfile, api) (push) Failing after 1s
Publish Extension / detect-version (push) Has been skipped
Publish Extension / submit (push) Has been cancelled
21 lines
535 B
JavaScript
21 lines
535 B
JavaScript
/**
|
|
* Resolve the yt-dlp release asset names used by desktop packaging scripts.
|
|
*/
|
|
export const YTDLP_PLATFORM_ASSETS = {
|
|
win32: {
|
|
asset: 'yt-dlp.exe',
|
|
output: 'yt-dlp.exe'
|
|
},
|
|
darwin: {
|
|
asset: 'yt-dlp_macos',
|
|
output: 'yt-dlp_macos'
|
|
},
|
|
linux: {
|
|
// Sentry issue VIDBEE-397 showed the generic `yt-dlp` zipapp can fall back
|
|
// to the user's Python runtime and crash on Python 3.8. Desktop needs the
|
|
// standalone Linux executable instead.
|
|
asset: 'yt-dlp_linux',
|
|
output: 'yt-dlp_linux'
|
|
}
|
|
}
|