Skip to content

improve yosys settings and parsing #356

improve yosys settings and parsing

improve yosys settings and parsing #356

# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: Upload 📦 to PyPI
on:
pull_request:
branches:
- 'main'
- 'releases/**'
push:
branches:
- 'main'
- 'releases/**'
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up 🐍
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish 📦 to PyPI
if: github.event.pull_request.merged == true || startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}