Skip to content

Bump core version to 0.1.11 #16

Bump core version to 0.1.11

Bump core version to 0.1.11 #16

name: Publish core to Pypi
on:
push:
tags:
- "core-v*.*.*"
jobs:
publish-core:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10.12'
- name: Get Poetry
uses: abatilo/actions-poetry@v2.1.6
with:
poetry-version: '1.5.1'
- name: Publish
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
cd core
poetry config repositories.pypi https://upload.pypi.org/legacy/
poetry config pypi-token.pypi $PYPI_TOKEN
poetry publish --repository pypi --build