summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernát Gábor <gaborjbernat@gmail.com>2023-04-26 17:47:15 -0700
committerGitHub <noreply@github.com>2023-04-26 17:47:15 -0700
commit6a0996e3c20bf7334aaa92e47011cdd76e2a3be5 (patch)
treec9e55b980cb51d58e046361580f72cbaddae1d9d
parent699db9e9516c796717c2db3e9014e9b4905725e3 (diff)
downloadvirtualenv-gaborbernat-patch-1.tar.gz
Update check.ymlgaborbernat-patch-1
-rw-r--r--.github/workflows/check.yml22
1 files changed, 0 insertions, 22 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
index 4a600f2..f0e5760 100644
--- a/.github/workflows/check.yml
+++ b/.github/workflows/check.yml
@@ -125,25 +125,3 @@ jobs:
env:
UPGRADE_ADVISORY: "yes"
- publish:
- needs: [check]
- runs-on: ubuntu-22.04
- steps:
- - name: Setup python to build package
- uses: actions/setup-python@v4
- with:
- python-version: "3.11"
- - name: Install https://pypi.org/project/build
- run: python -m pip install build
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Build sdist and wheel
- run: python -m build -s -w . -o dist
- - name: Publish to PyPi
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') && github.repository_owner == 'pypa'
- uses: pypa/gh-action-pypi-publish@v1.8.5
- with:
- skip_existing: true
- user: __token__
- password: ${{ secrets.pypi_password }}