Skip to content

basic functions to interface DV #20

basic functions to interface DV

basic functions to interface DV #20

Workflow file for this run

name: Build binaries
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
max-parallel: 1
matrix:
os: ['windows-latest', 'ubuntu-latest', 'macos-latest']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.10"
- run: pip install .
- run: pip install pyinstaller
- run: pyinstaller -F ./dvuploader/cli.py -n dvuploader-${{ matrix.os }} --distpath ./bin
- name: Push
run: |
git config --global user.name "Build Bot"
git config --global user.email "[email protected]"
git pull
git add ./bin/\*
git commit -a -m "🤖 Built DVUploader for ${{ matrix.os }}"
git push