Skip to content

chore(deps): bump setuptools from 68.2.2 to 70.0.0 #15

chore(deps): bump setuptools from 68.2.2 to 70.0.0

chore(deps): bump setuptools from 68.2.2 to 70.0.0 #15

Workflow file for this run

on:
push:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['windows-latest', 'ubuntu-latest', 'macos-latest']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Setup dependencies
run: |
pip install pipenv pyinstaller
pipenv requirements > requirements.txt
pip install -r requirements.txt
- name: Build executable
run: pyinstaller --onefile --name clincnv2vcf_${{ matrix.os }} clincnv2vcf.py
- name: Upload aritfact
uses: actions/upload-artifact@v2
with:
path: dist/*