Skip to content

Add section How to read footprint of a cell to docs (#44) #12

Add section How to read footprint of a cell to docs (#44)

Add section How to read footprint of a cell to docs (#44) #12

Workflow file for this run

name: publish-to-pypi
on:
push:
tags:
- '*'
jobs:
pypi-publish:
name: upload release to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Insert long_description_content_type
run: >-
sed -i "s|'name': 'isx'|'name': 'isx','long_description_content_type':'text/markdown'|g" setup.py
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install pypa/setuptools
run:
python -m pip install wheel
- name: Extract tag name
id: tag
run: echo ::set-output name=TAG_NAME::$(echo $GITHUB_REF | cut -d / -f 3)
- name: Update version in setup.py
run: >-
sed -i "s/0.0.0.dev0/${{ steps.tag.outputs.TAG_NAME }}/g" setup.py
- name: Build a binary wheel
run:
python setup.py sdist bdist_wheel
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1