Skip to content
name: Python Package using Conda
on: [push]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
npm install --global yarn twine
- name: Create Python Package
run: |
python3 setup.py sdist
- name: Upload to Twine
run: |
twine upload dist/*