From 21004c9ec897efbcf36f825f56537cbc83fc4d88 Mon Sep 17 00:00:00 2001 From: beucismis Date: Fri, 16 Jun 2023 12:20:43 +0300 Subject: [PATCH] Rename file --- .github/workflows/publish-to-pypi.yml | 25 -------------------- .github/workflows/publish.yml | 34 +++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 25 deletions(-) delete mode 100644 .github/workflows/publish-to-pypi.yml create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml deleted file mode 100644 index 549c42d..0000000 --- a/.github/workflows/publish-to-pypi.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Publish to PyPI - -on: - release: - types: [published] - -jobs: - pypi-publish: - name: Upload release to PyPI - runs-on: ubuntu-latest - environment: - name: pypi - url: https://pypi.org/p/ozgursozluk - permissions: - id-token: write - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - run: python3 -m pip install --upgrade build && python3 -m build - - name: Publish package distributions to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..2307214 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,34 @@ +name: Publish to PyPI + +on: + release: + types: [published] + +permissions: + contents: read + +jobs: + main: + name: sdist + pure wheel + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Set up latest Python + uses: actions/setup-python@v4 + with: + python-version: "*" + + - name: Install latest pip, build, twine + run: | + python -m pip install --upgrade --disable-pip-version-check pip + python -m pip install --upgrade build twine + + - name: Build wheel and source distributions + run: python -m build + + - name: Upload to PyPI via Twine + env: + TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} + run: twine upload --verbose -u '__token__' dist/*