summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernát Gábor <gaborjbernat@gmail.com>2023-04-26 17:47:31 -0700
committerGitHub <noreply@github.com>2023-04-26 17:47:31 -0700
commitba1cb8bfdaa16afad1ecd1937d8e3e6c5c1bdfe6 (patch)
treeb590fea6e51030d78d8ac8c238b0319d69c6f40c
parent699db9e9516c796717c2db3e9014e9b4905725e3 (diff)
downloadvirtualenv-ba1cb8bfdaa16afad1ecd1937d8e3e6c5c1bdfe6.tar.gz
Update check.yml
-rw-r--r--.github/workflows/check.yml23
1 files changed, 0 insertions, 23 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
index 4a600f2..19b37fc 100644
--- a/.github/workflows/check.yml
+++ b/.github/workflows/check.yml
@@ -124,26 +124,3 @@ jobs:
run: python -m tox -e ${{ matrix.tox_env }}
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 }}