]> jfr.im git - yt-dlp.git/blobdiff - .github/workflows/build.yml
Merge pull request #129 from blackjack4494/release
[yt-dlp.git] / .github / workflows / build.yml
index 79d742841b277cdc6a2c2ecf17132bbfc59588da..74b50ecca0f598e368448b71ef2437063e9e2e64 100644 (file)
-name: Build\r
-\r
-on:\r
-  push:\r
-    branches:\r
-      - release\r
-\r
-jobs:\r
-  build_unix:\r
-\r
-    runs-on: ubuntu-latest\r
-\r
-    outputs:\r
-      ytdlc_version: ${{ steps.bump_version.outputs.ytdlc_version }}\r
-      upload_url: ${{ steps.create_release.outputs.upload_url }}\r
-      sha2_unix: ${{ steps.sha2_file.outputs.sha2_unix }}\r
-\r
-    steps:\r
-    - uses: actions/checkout@v2\r
-    - name: Set up Python\r
-      uses: actions/setup-python@v2\r
-      with:\r
-          python-version: '3.x'\r
-    - name: Install packages\r
-      run: sudo apt-get -y install zip pandoc man\r
-    - name: Bump version\r
-      id: bump_version\r
-      run: python scripts/update-version-workflow.py\r
-    - name: Run Make\r
-      run: make\r
-    - name: Create Release\r
-      id: create_release\r
-      uses: actions/create-release@v1\r
-      env:\r
-        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\r
-      with:\r
-        tag_name: ${{ github.ref }}\r
-        release_name: youtube-dlc ${{ steps.dump_version.outputs.ytdlc_version }}\r
-        body: |\r
-          Changelog:\r
-          PLACEHOLDER\r
-        draft: false\r
-        prerelease: false\r
-    - name: Upload youtube-dlc Unix binary\r
-      id: upload-release-asset \r
-      uses: actions/upload-release-asset@v1\r
-      env:\r
-        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\r
-      with:\r
-        upload_url: ${{ steps.create_release.outputs.upload_url }}\r
-        asset_path: ./youtube-dlc\r
-        asset_name: youtube-dlc\r
-        asset_content_type: application/octet-stream\r
-    - name: Get SHA2-256SUMS for youtube-dlc\r
-      id: sha2_file\r
-      env:\r
-        SHA2: ${{ hashFiles('youtube-dlc') }}\r
-      run: echo "::set-output name=sha2_unix::${env:SHA2}"\r
-\r
-  build_windows:\r
-\r
-    runs-on: windows-latest\r
-\r
-    needs: build_unix\r
-\r
-    steps:\r
-    - uses: actions/checkout@v2\r
-    - name: Set up Python\r
-      uses: actions/setup-python@v2\r
-      with:\r
-          python-version: '3.x'\r
-    - name: Install Requirements\r
-      run: pip install pyinstaller\r
-    - name: Bump version\r
-      run: python scripts/update-version-workflow.py\r
-    - name: Run PyInstaller Script\r
-      run: python pyinst.py\r
-    - name: Upload youtube-dlc.exe Windows binary\r
-      id: upload-release-windows\r
-      uses: actions/upload-release-asset@v1\r
-      env:\r
-        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\r
-      with:\r
-        upload_url: ${{ needs.build_unix.outputs.upload_url }}\r
-        asset_path: ./dist/youtube-dlc.exe\r
-        asset_name: youtube-dlc.exe\r
-        asset_content_type: application/octet-stream\r
-    - name: Get SHA2-256SUMS for youtube-dlc.exe\r
-      id: sha2_file_win\r
-      env:\r
-        SHA2: ${{ hashFiles('dist/youtube-dlc.exe') }}\r
-      run: echo "::set-output name=sha2_windows::${env:SHA2}"\r
-\r
-  build_windows32:\r
-\r
-    runs-on: windows-latest\r
-\r
-    needs: build_unix\r
-\r
-    steps:\r
-    - uses: actions/checkout@v2\r
-    - name: Set up Python 3.4.2 32-Bit\r
-      uses: actions/setup-python@v2\r
-      with:\r
-          python-version: '3.4.2'\r
-          architecture: 'x86'\r
-    - name: Install Requirements for 32 Bit\r
-      run: pip install pyinstaller==3.5\r
-    - name: Bump version\r
-      run: python scripts/update-version-workflow.py\r
-    - name: Run PyInstaller Script for 32 Bit\r
-      run: python pyinst32.py\r
-    - name: Upload Executable youtube-dlc_x86.exe\r
-      id: upload-release-windows32\r
-      uses: actions/upload-release-asset@v1\r
-      env:\r
-        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\r
-      with:\r
-        upload_url: ${{ needs.build_unix.outputs.upload_url }}\r
-        asset_path: ./dist/youtube-dlc_x86.exe\r
-        asset_name: youtube-dlc_x86.exe\r
-        asset_content_type: application/octet-stream\r
-    - name: Get SHA2-256SUMS for youtube-dlc_x86.exe\r
-      id: sha2_file_win32\r
-      env:\r
-        SHA2: ${{ hashFiles('dist/youtube-dlc_x86.exe') }}\r
-      run: echo "::set-output name=sha2_windows32::${env:SHA2}"\r
-    - name: Make SHA2-256SUMS file\r
-      env:\r
-        SHA2_WINDOWS: ${{ needs.build_windows.outputs.sha2_windows }}\r
-        SHA2_WINDOWS32: ${{ steps.sha2_file_win32.outputs.sha2_windows32 }}\r
-        SHA2_UNIX: ${{ needs.build_unix.outputs.sha2_unix }}\r
-        YTDLC_VERSION: ${{ needs.build_unix.outputs.ytdlc_version }}\r
-      run: |\r
-        echo "$SHA2_WINDOWS youtube-dlc.exe" > SHA2-256SUMS\r
-        echo "$SHA2_WINDOWS32 youtube-dlc32.exe" > SHA2-256SUMS\r
-        echo "$SHA2_UNIX youtube-dlc" >> SHA2-256SUMS\r
-\r
-  deploy:\r
-\r
-    runs-on: ubuntu-latest\r
-\r
-    steps:\r
-    - uses: actions/checkout@v2\r
-    - name: Set up Python\r
-      uses: actions/setup-python@v2\r
-      with:\r
-        python-version: '3.x'\r
-    - name: Install dependencies\r
-      run: |\r
-        python -m pip install --upgrade pip\r
-        pip install setuptools wheel twine\r
-    - name: Bump version\r
-      run: python scripts/update-version-workflow.py\r
-    - name: Build and publish\r
-      env:\r
-        TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}\r
-        TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}\r
-      run: |\r
-        rm -rf dist/*\r
-        python setup.py sdist bdist_wheel\r
-        twine upload dist/*\r
+name: Build
+
+on:
+  push:
+    branches:
+      - release
+
+jobs:
+  build_unix:
+
+    runs-on: ubuntu-latest
+
+    outputs:
+      ytdlc_version: ${{ steps.bump_version.outputs.ytdlc_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 scripts/update-version-workflow.py
+    - name: Check the output from My action
+      run: echo "${{ steps.bump_version.outputs.ytdlc_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.ytdlc_version }}
+        release_name: youtube-dlc ${{ steps.bump_version.outputs.ytdlc_version }}
+        body: |
+          Changelog:
+          PLACEHOLDER
+        draft: false
+        prerelease: false
+    - name: Upload youtube-dlc 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: ./youtube-dlc
+        asset_name: youtube-dlc
+        asset_content_type: application/octet-stream
+    - name: Get SHA2-256SUMS for youtube-dlc
+      id: sha2_file
+      env:
+        SHA2: ${{ hashFiles('youtube-dlc') }}
+      run: echo "::set-output name=sha2_unix::$SHA2"
+    - name: Install dependencies for pypi
+      run: |
+        python -m pip install --upgrade pip
+        pip install setuptools wheel twine
+    - name: Build and publish
+      env:
+        TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
+        TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
+      run: |
+        rm -rf dist/*
+        python setup.py sdist bdist_wheel
+        twine upload dist/*
+
+  build_windows:
+
+    runs-on: windows-latest
+
+    needs: build_unix
+
+    steps:
+    - uses: actions/checkout@v2
+    - name: Set up Python
+      uses: actions/setup-python@v2
+      with:
+          python-version: '3.x'
+    - name: Install Requirements
+      run: pip install pyinstaller
+    - name: Bump version
+      run: python scripts/update-version-workflow.py
+    - name: Run PyInstaller Script
+      run: python pyinst.py
+    - name: Upload youtube-dlc.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/youtube-dlc.exe
+        asset_name: youtube-dlc.exe
+        asset_content_type: application/vnd.microsoft.portable-executable
+    - name: Get SHA2-256SUMS for youtube-dlc.exe
+      id: sha2_file_win
+      env:
+        SHA2_win: ${{ hashFiles('dist/youtube-dlc.exe') }}
+      run: echo "::set-output name=sha2_windows::$SHA2_win"
+
+  build_windows32:
+
+    runs-on: windows-latest
+
+    needs: [build_unix, build_windows]
+
+    steps:
+    - uses: actions/checkout@v2
+    - name: Set up Python 3.5.4 32-Bit
+      uses: actions/setup-python@v2
+      with:
+          python-version: '3.5.4'
+          architecture: 'x86'
+    - name: Install Requirements for 32 Bit
+      run: pip install pyinstaller==3.5
+    - name: Bump version
+      run: python scripts/update-version-workflow.py
+    - name: Run PyInstaller Script for 32 Bit
+      run: python pyinst32.py
+    - name: Upload Executable youtube-dlc_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/youtube-dlc_x86.exe
+        asset_name: youtube-dlc_x86.exe
+        asset_content_type: application/vnd.microsoft.portable-executable
+    - name: Get SHA2-256SUMS for youtube-dlc_x86.exe
+      id: sha2_file_win32
+      env:
+        SHA2_win32: ${{ hashFiles('dist/youtube-dlc_x86.exe') }}
+      run: echo "::set-output name=sha2_windows32::$SHA2_win32"
+    - 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 }}
+        YTDLC_VERSION: ${{ needs.build_unix.outputs.ytdlc_version }}
+      run: |
+        echo "version:${env:YTDLC_VERSION}" >> SHA2-256SUMS
+        echo "youtube-dlc.exe:${env:SHA2_WINDOWS}" >> SHA2-256SUMS
+        echo "youtube-dlc_x86.exe:${env:SHA2_WINDOWS32}" >> SHA2-256SUMS
+        echo "youtube-dlc:${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