From 7f6b0ca978a5d32da8dd2d20161b8d20458b9e12 Mon Sep 17 00:00:00 2001 From: Girish <79399756+Girish-Anadv-07@users.noreply.github.com> Date: Wed, 14 Feb 2024 22:37:01 -0500 Subject: [PATCH] Delete .github/workflows/pypi-publish.yml --- .github/workflows/pypi-publish.yml | 34 ------------------------------ 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/pypi-publish.yml diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml deleted file mode 100644 index 7e0dd04..0000000 --- a/.github/workflows/pypi-publish.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Build and Deploy -on: - push: - branches: - - master -permissions: - contents: write - id-token: write -jobs: - build-and-deploy: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Build Pypi Files - run: | - pip install --upgrade pip - pip install --upgrade setuptools - pip install wheel - pip install twine - git config --global user.name "${{secrets.GIT_USER}}" - git config --global user.email "${{secrets.GIT_GMAIL}}" - rm -rf build dist gunfolds.egg-info - git stash - git fetch --all - git checkout version - bash version_update.sh - python3 setup.py sdist bdist_wheel - - - name: Publish to Pypi - uses: pypa/gh-action-pypi-publish@release/v1 - with: - password: ${{ secrets.PYPI_PASSWORD }}