Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Release Pythonify | |
on: | |
release: | |
types: [created] | |
jobs: | |
build: | |
name: Build on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install pyinstaller | |
- name: Install FFmpeg (Ubuntu) | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y ffmpeg | |
- name: Install FFmpeg (macOS) | |
if: matrix.os == 'macos-latest' | |
run: | | |
brew install ffmpeg | |
- name: Download FFmpeg (Windows) | |
if: matrix.os == 'windows-latest' | |
run: | | |
Invoke-WebRequest -Uri "https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-win64-gpl.zip" -OutFile "ffmpeg.zip" | |
Expand-Archive -Path "ffmpeg.zip" -DestinationPath "." | |
Move-Item -Path "ffmpeg-master-latest-win64-gpl\bin\ffmpeg.exe" -Destination "." | |
- name: Build with PyInstaller | |
run: | | |
pyinstaller spotify_downloader_clean.spec | |
- name: Upload Release Asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: ./dist/spotify_downloader_clean${{ matrix.os == 'windows-latest' && '.exe' || '' }} | |
asset_name: spotify_downloader_${{ runner.os }}${{ matrix.os == 'windows-latest' && '.exe' || '' }} | |
asset_content_type: application/octet-stream |