From d8b012a9b0f713ff1b87e3d9f9f61bd980b572a0 Mon Sep 17 00:00:00 2001 From: Mohsin Mukhtiar Lashari <160683327+president-xd@users.noreply.github.com> Date: Wed, 21 Aug 2024 05:21:37 +0500 Subject: [PATCH] Delete .github/release.yml --- .github/release.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml deleted file mode 100644 index 309796c..0000000 --- a/.github/release.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Release - -on: - push: - tags: - - 'v0.1.1' # This matches tags like v0.1.2, v1.0.0, etc. - -jobs: - release: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.x' - - - name: Install dependencies - run: | - pip install -r requirements.txt - pip install twine - - - name: Build and publish - env: - PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }} - run: | - python setup.py sdist bdist_wheel - twine upload dist/*