Skip to content

Merge branch 'feature/cli' of https://github.com/gdcc/python-dvupload… #16

Merge branch 'feature/cli' of https://github.com/gdcc/python-dvupload…

Merge branch 'feature/cli' of https://github.com/gdcc/python-dvupload… #16

Workflow file for this run

name: Integration Tests
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