45 VERSION: yyyy.mm.dd[.rev] or rev
50 SOURCE of this build's updates: stable/nightly/master/<repo>
55 description: yt-dlp, yt-dlp.tar.gz, yt-dlp_linux, yt-dlp_linux.zip
59 description: yt-dlp_linux_aarch64, yt-dlp_linux_armv7l
63 description: yt-dlp_macos, yt-dlp_macos.zip
67 description: yt-dlp_macos_legacy
71 description: yt-dlp.exe, yt-dlp_min.exe, yt-dlp_win.zip
75 description: yt-dlp_x86.exe
79 description: SHA2-256SUMS, SHA2-512SUMS, _update_spec
85 default: 'current repo'
95 runs-on: ubuntu-latest
97 origin: ${{ steps.process_origin.outputs.origin }}
99 - name: Process origin
102 echo "origin=${{ inputs.origin == 'current repo' && github.repository || inputs.origin }}" | tee "$GITHUB_OUTPUT"
107 runs-on: ubuntu-latest
109 - uses: actions/checkout@v4
110 - uses: actions/setup-python@v4
112 python-version: "3.10"
113 - uses: conda-incubator/setup-miniconda@v2
115 miniforge-variant: Mambaforge
117 channels: conda-forge
118 auto-update-conda: true
119 activate-environment: ""
120 auto-activate-base: false
121 - name: Install Requirements
123 sudo apt -y install zip pandoc man sed
132 sed -E '/^(brotli|secretstorage).*/d' requirements.txt >> "$reqs"
133 mamba create -n build --file "$reqs"
137 python devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
138 python devscripts/make_lazy_extractors.py
139 - name: Build Unix platform-independent binary
142 - name: Build Unix standalone binary
145 unset LD_LIBRARY_PATH # Harmful; set by setup-python
147 python -m bundle.pyinstaller --onedir
148 (cd ./dist/yt-dlp_linux && zip -r ../yt-dlp_linux.zip .)
149 python -m bundle.pyinstaller
150 mv ./dist/yt-dlp_linux ./yt-dlp_linux
151 mv ./dist/yt-dlp_linux.zip ./yt-dlp_linux.zip
153 - name: Verify --update-to
154 if: vars.UPDATE_TO_VERIFICATION
156 binaries=("yt-dlp" "yt-dlp_linux")
157 for binary in "${binaries[@]}"; do
159 cp ./${binary} ./${binary}_downgraded
160 version="$(./${binary} --version)"
161 ./${binary}_downgraded -v --update-to yt-dlp/yt-dlp@2023.03.04
162 downgraded_version="$(./${binary}_downgraded --version)"
163 [[ "$version" != "$downgraded_version" ]]
166 - name: Upload artifacts
167 uses: actions/upload-artifact@v3
180 packages: write # for creating cache
181 runs-on: ubuntu-latest
189 - uses: actions/checkout@v4
192 - name: Virtualized Install, Prepare & Build
193 uses: yt-dlp/run-on-arch-action@v2
195 # Ref: https://github.com/uraimo/run-on-arch-action/issues/55
197 GITHUB_WORKFLOW: build
198 githubToken: ${{ github.token }} # To cache image
199 arch: ${{ matrix.architecture }}
200 distro: ubuntu18.04 # Standalone executable should be built on minimum supported OS
201 dockerRunArgs: --volume "${PWD}/repo:/repo"
202 install: | # Installing Python 3.10 from the Deadsnakes repo raises errors
204 apt -y install zlib1g-dev python3.8 python3.8-dev python3.8-distutils python3-pip
205 python3.8 -m pip install -U pip setuptools wheel
206 # Cannot access requirements.txt from the repo directory at this stage
207 python3.8 -m pip install -U Pyinstaller mutagen pycryptodomex websockets brotli certifi secretstorage
211 python3.8 -m pip install -U Pyinstaller secretstorage -r requirements.txt # Cached version may be out of date
212 python3.8 devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
213 python3.8 devscripts/make_lazy_extractors.py
214 python3.8 -m bundle.pyinstaller
216 if ${{ vars.UPDATE_TO_VERIFICATION && 'true' || 'false' }}; then
217 arch="${{ (matrix.architecture == 'armv7' && 'armv7l') || matrix.architecture }}"
218 chmod +x ./dist/yt-dlp_linux_${arch}
219 cp ./dist/yt-dlp_linux_${arch} ./dist/yt-dlp_linux_${arch}_downgraded
220 version="$(./dist/yt-dlp_linux_${arch} --version)"
221 ./dist/yt-dlp_linux_${arch}_downgraded -v --update-to yt-dlp/yt-dlp@2023.03.04
222 downgraded_version="$(./dist/yt-dlp_linux_${arch}_downgraded --version)"
223 [[ "$version" != "$downgraded_version" ]]
226 - name: Upload artifacts
227 uses: actions/upload-artifact@v3
229 path: | # run-on-arch-action designates armv7l as armv7
230 repo/dist/yt-dlp_linux_${{ (matrix.architecture == 'armv7' && 'armv7l') || matrix.architecture }}
238 - uses: actions/checkout@v4
239 # NB: Building universal2 does not work with python from actions/setup-python
240 - name: Install Requirements
242 brew install coreutils
243 python3 -m pip install -U --user pip setuptools wheel
244 # We need to ignore wheels otherwise we break universal2 builds
245 python3 -m pip install -U --user --no-binary :all: Pyinstaller -r requirements.txt
249 python3 devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
250 python3 devscripts/make_lazy_extractors.py
253 python3 -m bundle.pyinstaller --target-architecture universal2 --onedir
254 (cd ./dist/yt-dlp_macos && zip -r ../yt-dlp_macos.zip .)
255 python3 -m bundle.pyinstaller --target-architecture universal2
257 - name: Verify --update-to
258 if: vars.UPDATE_TO_VERIFICATION
260 chmod +x ./dist/yt-dlp_macos
261 cp ./dist/yt-dlp_macos ./dist/yt-dlp_macos_downgraded
262 version="$(./dist/yt-dlp_macos --version)"
263 ./dist/yt-dlp_macos_downgraded -v --update-to yt-dlp/yt-dlp@2023.03.04
264 downgraded_version="$(./dist/yt-dlp_macos_downgraded --version)"
265 [[ "$version" != "$downgraded_version" ]]
267 - name: Upload artifacts
268 uses: actions/upload-artifact@v3
272 dist/yt-dlp_macos.zip
276 if: inputs.macos_legacy
277 runs-on: macos-latest
280 - uses: actions/checkout@v4
281 - name: Install Python
282 # We need the official Python, because the GA ones only support newer macOS versions
284 PYTHON_VERSION: 3.10.5
285 MACOSX_DEPLOYMENT_TARGET: 10.9 # Used up by the Python build tools
287 # Hack to get the latest patch version. Uncomment if needed
288 #brew install python@3.10
289 #export PYTHON_VERSION=$( $(brew --prefix)/opt/python@3.10/bin/python3 --version | cut -d ' ' -f 2 )
290 curl https://www.python.org/ftp/python/${PYTHON_VERSION}/python-${PYTHON_VERSION}-macos11.pkg -o "python.pkg"
291 sudo installer -pkg python.pkg -target /
293 - name: Install Requirements
295 brew install coreutils
296 python3 -m pip install -U --user pip setuptools wheel
297 python3 -m pip install -U --user Pyinstaller -r requirements.txt
301 python3 devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
302 python3 devscripts/make_lazy_extractors.py
305 python3 -m bundle.pyinstaller
306 mv dist/yt-dlp_macos dist/yt-dlp_macos_legacy
308 - name: Verify --update-to
309 if: vars.UPDATE_TO_VERIFICATION
311 chmod +x ./dist/yt-dlp_macos_legacy
312 cp ./dist/yt-dlp_macos_legacy ./dist/yt-dlp_macos_legacy_downgraded
313 version="$(./dist/yt-dlp_macos_legacy --version)"
314 ./dist/yt-dlp_macos_legacy_downgraded -v --update-to yt-dlp/yt-dlp@2023.03.04
315 downgraded_version="$(./dist/yt-dlp_macos_legacy_downgraded --version)"
316 [[ "$version" != "$downgraded_version" ]]
318 - name: Upload artifacts
319 uses: actions/upload-artifact@v3
322 dist/yt-dlp_macos_legacy
327 runs-on: windows-latest
330 - uses: actions/checkout@v4
331 - uses: actions/setup-python@v4
332 with: # 3.8 is used for Win7 support
333 python-version: "3.8"
334 - name: Install Requirements
335 run: | # Custom pyinstaller built with https://github.com/yt-dlp/pyinstaller-builds
336 python -m pip install -U pip setuptools wheel py2exe
337 pip install -U "https://yt-dlp.github.io/Pyinstaller-Builds/x86_64/pyinstaller-5.8.0-py3-none-any.whl" -r requirements.txt
341 python devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
342 python devscripts/make_lazy_extractors.py
345 python -m bundle.py2exe
346 Move-Item ./dist/yt-dlp.exe ./dist/yt-dlp_min.exe
347 python -m bundle.pyinstaller
348 python -m bundle.pyinstaller --onedir
349 Compress-Archive -Path ./dist/yt-dlp/* -DestinationPath ./dist/yt-dlp_win.zip
351 - name: Verify --update-to
352 if: vars.UPDATE_TO_VERIFICATION
354 foreach ($name in @("yt-dlp","yt-dlp_min")) {
355 Copy-Item "./dist/${name}.exe" "./dist/${name}_downgraded.exe"
356 $version = & "./dist/${name}.exe" --version
357 & "./dist/${name}_downgraded.exe" -v --update-to yt-dlp/yt-dlp@2023.03.04
358 $downgraded_version = & "./dist/${name}_downgraded.exe" --version
359 if ($version -eq $downgraded_version) {
364 - name: Upload artifacts
365 uses: actions/upload-artifact@v3
375 runs-on: windows-latest
378 - uses: actions/checkout@v4
379 - uses: actions/setup-python@v4
381 python-version: "3.8"
383 - name: Install Requirements
385 python -m pip install -U pip setuptools wheel
386 pip install -U "https://yt-dlp.github.io/Pyinstaller-Builds/i686/pyinstaller-5.8.0-py3-none-any.whl" -r requirements.txt
390 python devscripts/update-version.py -c "${{ inputs.channel }}" -r "${{ needs.process.outputs.origin }}" "${{ inputs.version }}"
391 python devscripts/make_lazy_extractors.py
394 python -m bundle.pyinstaller
396 - name: Verify --update-to
397 if: vars.UPDATE_TO_VERIFICATION
399 foreach ($name in @("yt-dlp_x86")) {
400 Copy-Item "./dist/${name}.exe" "./dist/${name}_downgraded.exe"
401 $version = & "./dist/${name}.exe" --version
402 & "./dist/${name}_downgraded.exe" -v --update-to yt-dlp/yt-dlp@2023.03.04
403 $downgraded_version = & "./dist/${name}_downgraded.exe" --version
404 if ($version -eq $downgraded_version) {
409 - name: Upload artifacts
410 uses: actions/upload-artifact@v3
416 if: inputs.meta_files && always() && !cancelled()
425 runs-on: ubuntu-latest
427 - uses: actions/download-artifact@v3
429 - name: Make SHA2-SUMS files
432 sha256sum * > ../SHA2-256SUMS
433 sha512sum * > ../SHA2-512SUMS
435 - name: Make Update spec
437 cat >> _update_spec << EOF
438 # This file is used for regulating self-update
439 lock 2022.08.18.36 .+ Python 3\.6
440 lock 2023.11.16 (?!win_x86_exe).+ Python 3\.7
441 lock 2023.11.16 win_x86_exe .+ Windows-(?:Vista|2008Server)
442 lockV2 yt-dlp/yt-dlp 2022.08.18.36 .+ Python 3\.6
443 lockV2 yt-dlp/yt-dlp 2023.11.16 (?!win_x86_exe).+ Python 3\.7
444 lockV2 yt-dlp/yt-dlp 2023.11.16 win_x86_exe .+ Windows-(?:Vista|2008Server)
445 lockV2 yt-dlp/yt-dlp-nightly-builds 2023.11.15.232826 (?!win_x86_exe).+ Python 3\.7
446 lockV2 yt-dlp/yt-dlp-nightly-builds 2023.11.15.232826 win_x86_exe .+ Windows-(?:Vista|2008Server)
447 lockV2 yt-dlp/yt-dlp-master-builds 2023.11.15.232812 (?!win_x86_exe).+ Python 3\.7
448 lockV2 yt-dlp/yt-dlp-master-builds 2023.11.15.232812 win_x86_exe .+ Windows-(?:Vista|2008Server)
451 - name: Sign checksum files
453 GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
454 if: env.GPG_SIGNING_KEY != ''
456 gpg --batch --import <<< "${{ secrets.GPG_SIGNING_KEY }}"
457 for signfile in ./SHA*SUMS; do
458 gpg --batch --detach-sign "$signfile"
461 - name: Upload artifacts
462 uses: actions/upload-artifact@v3