mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 17:23:48 +01:00
7a5c1cfe93
* All modules and binary names are changed * All documentation references changed * yt-dlp no longer loads youtube-dlc config files * All URLs changed to point to organization account Co-authored-by: Pccode66 Co-authored-by: pukkandan
178 lines
5.8 KiB
YAML
178 lines
5.8 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- release
|
|
|
|
jobs:
|
|
build_unix:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
ytdlp_version: ${{ steps.bump_version.outputs.ytdlp_version }}
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
sha2_unix: ${{ steps.sha2_file.outputs.sha2_unix }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.8'
|
|
- name: Install packages
|
|
run: sudo apt-get -y install zip pandoc man
|
|
- name: Bump version
|
|
id: bump_version
|
|
run: python devscripts/update-version.py
|
|
- name: Print version
|
|
run: echo "${{ steps.bump_version.outputs.ytdlp_version }}"
|
|
- name: Run Make
|
|
run: make
|
|
- name: Create Release
|
|
id: create_release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ steps.bump_version.outputs.ytdlp_version }}
|
|
release_name: yt-dlp ${{ steps.bump_version.outputs.ytdlp_version }}
|
|
body: |
|
|
Changelog:
|
|
PLACEHOLDER
|
|
draft: false
|
|
prerelease: false
|
|
- name: Upload yt-dlp Unix binary
|
|
id: upload-release-asset
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
asset_path: ./yt-dlp
|
|
asset_name: yt-dlp
|
|
asset_content_type: application/octet-stream
|
|
- name: Get SHA2-256SUMS for yt-dlp
|
|
id: sha2_file
|
|
run: echo "::set-output name=sha2_unix::$(sha256sum yt-dlp | awk '{print $1}')"
|
|
- name: Install dependencies for pypi
|
|
env:
|
|
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
|
|
if: "env.PYPI_TOKEN != ''"
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install setuptools wheel twine
|
|
- name: Build and publish on pypi
|
|
env:
|
|
TWINE_USERNAME: __token__
|
|
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|
|
if: "env.TWINE_PASSWORD != ''"
|
|
run: |
|
|
rm -rf dist/*
|
|
python setup.py sdist bdist_wheel
|
|
twine upload dist/*
|
|
|
|
build_windows:
|
|
|
|
runs-on: windows-latest
|
|
|
|
outputs:
|
|
sha2_windows: ${{ steps.sha2_file_win.outputs.sha2_windows }}
|
|
|
|
needs: build_unix
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.8'
|
|
- name: Upgrade pip and enable wheel support
|
|
run: python -m pip install --upgrade pip setuptools wheel
|
|
- name: Install Requirements
|
|
run: pip install pyinstaller mutagen pycryptodome
|
|
- name: Bump version
|
|
id: bump_version
|
|
run: python devscripts/update-version.py
|
|
- name: Print version
|
|
run: echo "${{ steps.bump_version.outputs.ytdlp_version }}"
|
|
- name: Run PyInstaller Script
|
|
run: python pyinst.py 64
|
|
- name: Upload yt-dlp.exe Windows binary
|
|
id: upload-release-windows
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ needs.build_unix.outputs.upload_url }}
|
|
asset_path: ./dist/yt-dlp.exe
|
|
asset_name: yt-dlp.exe
|
|
asset_content_type: application/vnd.microsoft.portable-executable
|
|
- name: Get SHA2-256SUMS for yt-dlp.exe
|
|
id: sha2_file_win
|
|
run: echo "::set-output name=sha2_windows::$((Get-FileHash dist\yt-dlp.exe -Algorithm SHA256).Hash.ToLower())"
|
|
|
|
build_windows32:
|
|
|
|
runs-on: windows-latest
|
|
|
|
outputs:
|
|
sha2_windows32: ${{ steps.sha2_file_win32.outputs.sha2_windows32 }}
|
|
|
|
needs: [build_unix, build_windows]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python 3.4.4 32-Bit
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.4.4'
|
|
architecture: 'x86'
|
|
- name: Upgrade pip and enable wheel support
|
|
run: python -m pip install pip==19.1.1 setuptools==43.0.0 wheel==0.33.6
|
|
- name: Install Requirements for 32 Bit
|
|
run: pip install pyinstaller==3.5 mutagen==1.42.0 pycryptodome==3.9.4
|
|
- name: Bump version
|
|
id: bump_version
|
|
run: python devscripts/update-version.py
|
|
- name: Print version
|
|
run: echo "${{ steps.bump_version.outputs.ytdlp_version }}"
|
|
- name: Run PyInstaller Script for 32 Bit
|
|
run: python pyinst.py 32
|
|
- name: Upload Executable yt-dlp_x86.exe
|
|
id: upload-release-windows32
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ needs.build_unix.outputs.upload_url }}
|
|
asset_path: ./dist/yt-dlp_x86.exe
|
|
asset_name: yt-dlp_x86.exe
|
|
asset_content_type: application/vnd.microsoft.portable-executable
|
|
- name: Get SHA2-256SUMS for yt-dlp_x86.exe
|
|
id: sha2_file_win32
|
|
run: echo "::set-output name=sha2_windows32::$((Get-FileHash dist\yt-dlp_x86.exe -Algorithm SHA256).Hash.ToLower())"
|
|
- name: Make SHA2-256SUMS file
|
|
env:
|
|
SHA2_WINDOWS: ${{ needs.build_windows.outputs.sha2_windows }}
|
|
SHA2_WINDOWS32: ${{ steps.sha2_file_win32.outputs.sha2_windows32 }}
|
|
SHA2_UNIX: ${{ needs.build_unix.outputs.sha2_unix }}
|
|
YTDLP_VERSION: ${{ needs.build_unix.outputs.ytdlp_version }}
|
|
run: |
|
|
echo "version:${env:YTDLP_VERSION}" >> SHA2-256SUMS
|
|
echo "yt-dlp.exe:${env:SHA2_WINDOWS}" >> SHA2-256SUMS
|
|
echo "yt-dlp_x86.exe:${env:SHA2_WINDOWS32}" >> SHA2-256SUMS
|
|
echo "yt-dlp:${env:SHA2_UNIX}" >> SHA2-256SUMS
|
|
|
|
- name: Upload 256SUMS file
|
|
id: upload-sums
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ needs.build_unix.outputs.upload_url }}
|
|
asset_path: ./SHA2-256SUMS
|
|
asset_name: SHA2-256SUMS
|
|
asset_content_type: text/plain
|