From 045ffb9f9c1f9316ed8676958c5f8793e2c2638f Mon Sep 17 00:00:00 2001 From: Dmitry Zhylko Date: Mon, 7 Oct 2024 15:37:53 +0300 Subject: [PATCH] deploy release --- .github/workflows/main.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 1d1aaec..5be4b02 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -6,7 +6,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install dependencies run: | make deps @@ -20,7 +20,7 @@ jobs: matrix: python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v2 with: @@ -34,21 +34,21 @@ jobs: needs: [lint, test] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install dependencies run: | make deps - name: Build package run: >- make build - - name: Publish package to Test PyPI (always) - uses: pypa/gh-action-pypi-publish@release/v1 - with: - password: ${{ secrets.TEST_PYPI_API_TOKEN }} - repository_url: https://test.pypi.org/legacy/ - skip_existing: true +# - name: Publish package to Test PyPI (always) +# uses: pypa/gh-action-pypi-publish@release/v1 +# with: +# password: ${{ secrets.TEST_PYPI_API_TOKEN }} +# repository_url: https://test.pypi.org/legacy/ +# skip_existing: true - name: Publish package to PyPI (only if pushing a tag) - if: startsWith(github.ref, 'refs/tags') +# if: startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }}