make compileall work #183
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publish | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install --upgrade setuptools | |
pip install --upgrade twine | |
pip install --upgrade build | |
python -m build | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: ./dist | |
pypi-publish: | |
needs: [ 'build' ] | |
environment: 'publish' | |
name: upload release to PyPI | |
runs-on: ubuntu-latest | |
permissions: | |
# IMPORTANT: this permission is mandatory for trusted publishing | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
packages_dir: artifact/ |