Skip to content

chore(coverage.yml): comment out unused workflow configuration in cov… #2

chore(coverage.yml): comment out unused workflow configuration in cov…

chore(coverage.yml): comment out unused workflow configuration in cov… #2

Workflow file for this run

name: Publish to PyPI
on:
# release:
# types: [published]
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-22.04
steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v4
# with:
# python-version: "3.12"
# - name: Install Poetry
# uses: abatilo/actions-poetry@v2
# - name: Setup a local virtual environment
# run: |
# poetry config virtualenvs.create true --local
# poetry config virtualenvs.in-project true --local
# - uses: actions/cache@v3
# name: Define a cache for the virtual environment based on the dependencies lock file
# with:
# path: ./.venv
# key: venv-${{ hashFiles('poetry.lock') }}
# - name: Install dependencies
# run: poetry install
# - name: Configure poetry for publishing
# run: poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
# - name: Publish package to PyPI
# run: poetry publish --build
- uses: ./.github/workflows/tests.yml
with:
python-version: "3.12"
- name: Configure poetry for publishing
run: poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
- name: Publish package to PyPI
# run: poetry publish --build
run: echo "Published"