Skip to content

0.1.5

0.1.5 #29

Workflow file for this run

name: Publish ncem to PyPI
on:
release:
types: [published]
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/[email protected]
with:
fetch-depth: 2
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.8"
- name: Install Poetry
run: |
pip install poetry
poetry --version
- name: Build package
run: |
poetry build --ansi
- name: Publish package on PyPI
uses: pypa/[email protected]
with:
# COOKIETEMPLE: Configure your PyPI Token to enable automatic deployment to PyPi on releases
# https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets
user: __token__
password: ${{ secrets.PYPI_TOKEN }}