declutter UI by moving buttons into menus #57
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 BTL to PyPi | |
on: push | |
jobs: | |
build-and-publish: | |
name: Build and publish BTL to PyPI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Install build environment | |
run: python3 -m pip install build --user | |
- name: Install requirements | |
run: pip install --no-cache-dir -r requirements.txt | |
- name: Build a wheel | |
run: python3 -m build | |
- name: Publish to PyPI | |
if: startsWith(github.ref, 'refs/tags') | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} |