From e64c7c7799bbe0c22d7218e22e05739110541584 Mon Sep 17 00:00:00 2001 From: Victor Ruiz Date: Thu, 4 Apr 2024 13:02:04 +0200 Subject: [PATCH] Fix indentation --- .github/workflows/main.yml | 40 +++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6fd172b..f5093f5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,25 +33,25 @@ jobs: - name: Run tests run: tox -e ${{ matrix.tox || 'py' }} - publish: - needs: test - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') - steps: - - uses: actions/checkout@master - - name: Set up Python 3.11 - uses: actions/setup-python@v3 - with: - python-version: "3.11" + publish: + needs: test + if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + steps: + - uses: actions/checkout@master + - name: Set up Python 3.11 + uses: actions/setup-python@v3 + with: + python-version: "3.11" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install setuptools wheel twine + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install setuptools wheel twine - - name: Build and publish - env: - TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} - run: | - python setup.py sdist bdist_wheel - twine upload dist/* + - name: Build and publish + env: + TWINE_USERNAME: __token__ + TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} + run: | + python setup.py sdist bdist_wheel + twine upload dist/*