Skip to content

Update print statement from 'Hello' to 'Goodbye' #988

Update print statement from 'Hello' to 'Goodbye'

Update print statement from 'Hello' to 'Goodbye' #988

Workflow file for this run

name: Publish Python Package to PyPI-Resmi
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@v6
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build the package
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1