Skip to content

Fixing anaconda build #32

Fixing anaconda build

Fixing anaconda build #32

Workflow file for this run

name: Publish Decide to pypi
on:
release:
types: [ created ]
jobs:
deploy:
strategy:
matrix:
python-version: [
"3.11",
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.6.1
- name: Install dependencies
run: poetry install
- name: Build and publish
run: |
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
poetry publish --build