
The recent 2021.4 release of pyinstaller-hooks-contrib now contains a built-in hook for platformdirs. Manually specifying the hidden import arg should no longer be needed.
55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
name: Upload self-contained binaries
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [windows-2019, ubuntu-20.04, macos-latest]
|
|
include:
|
|
- os: windows-2019
|
|
pathsep: ";"
|
|
asset_name: black_windows.exe
|
|
executable_mime: "application/vnd.microsoft.portable-executable"
|
|
- os: ubuntu-20.04
|
|
pathsep: ":"
|
|
asset_name: black_linux
|
|
executable_mime: "application/x-executable"
|
|
- os: macos-latest
|
|
pathsep: ":"
|
|
asset_name: black_macos
|
|
executable_mime: "application/x-mach-binary"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up latest Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "*"
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip wheel setuptools
|
|
python -m pip install .
|
|
python -m pip install pyinstaller
|
|
|
|
- name: Build binary
|
|
run: |
|
|
python -m PyInstaller -F --name ${{ matrix.asset_name }} --add-data 'src/blib2to3${{ matrix.pathsep }}blib2to3' src/black/__main__.py
|
|
|
|
- name: Upload binary as 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/${{ matrix.asset_name }}
|
|
asset_name: ${{ matrix.asset_name }}
|
|
asset_content_type: ${{ matrix.executable_mime }}
|