Skip to content

Add init file to ions package, re-export classes #79

Add init file to ions package, re-export classes

Add init file to ions package, re-export classes #79

Workflow file for this run

name: Package
on:
push:
branches:
- master
workflow_dispatch:
pull_request:
jobs:
build_and_upload_wheel:
name: Build and upload wheel
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install poetry
run: |
python -m pip install poetry==1.3.2
- name: Build wheel
run: poetry build -f wheel
- name: Configure poetry
if: github.event_name == 'push'
run: |
poetry config pypi-token.pypi ${{ secrets.ATOMICPYPI }}
- name: Upload wheel
if: github.event_name == 'push'
run: poetry publish