Skip to content

chore(deps-dev): bump gitpython from 3.1.35 to 3.1.37 #9

chore(deps-dev): bump gitpython from 3.1.35 to 3.1.37

chore(deps-dev): bump gitpython from 3.1.35 to 3.1.37 #9

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/*