Skip to content

Delete kececinumbers.egg-info directory #1130

Delete kececinumbers.egg-info directory

Delete kececinumbers.egg-info directory #1130

Workflow file for this run

name: Publish Python Package to PyPI-ci-cd.yml
on:
push:
branches: ["main"]
workflow_dispatch:
jobs:
publish:
name: Publish to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write # Gerekli: OIDC token istemek için
contents: read # Kod deposunu okumak için
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build docs
run: |
pip install -r docs/requirements.txt
cd docs && make html
- name: Build the package
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@v1.14.0