Added license and test pypi publish workflow #2
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 Python Package | |
on: | |
push: | |
branches: | |
- '**' # Runs on push to any branch | |
workflow_dispatch: # Allows for manual triggering | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Bootstrap poetry | |
run: | | |
curl -sSL https://install.python-poetry.org | python - -y | |
- name: Update PATH | |
run: echo "$HOME/.local/bin" >> $GITHUB_PATH | |
- name: Install dependencies | |
run: poetry install --no-dev | |
- name: Build the package | |
run: poetry build | |
- name: Publish to PyPI | |
env: | |
PYPI_USERNAME: "mobius_labs" | |
PYPI_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }} | |
run: | | |
poetry config repositories.testpypi https://test.pypi.org/legacy/ | |
poetry publish --username $PYPI_USERNAME --password $PYPI_PASSWORD -r testpypi |