ven_duplicate_remover: improvments and new options #357
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: Package exe with PyInstaller - Windows | |
on: | |
push: | |
branches: [ master, mt4l ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Make executables | |
uses: cpainchaud/pyinstaller-action-windows@main | |
with: | |
path: ./ | |
spec: pylo/utilities/ | |
extra_python_paths: Z:\\github\\workspace\\;Z:\\github\\workspace\\pylo;C:\\Windows\\System32\\downlevel | |
- name: Publish executables for Master branch | |
if: github.ref == 'refs/heads/master' && github.event_name == 'push' | |
uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: true | |
title: "Latest Binaries" | |
files: | | |
dist/windows/* | |