From ac15eac9d66198756f41a44a460c1cbd619b71b4 Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Tue, 19 Dec 2023 11:17:41 +0100 Subject: [PATCH] ci: fix actions file ident --- .github/workflows/actions.yml | 48 +++++++++++++++++------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index b267c3c7..1f03339a 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -44,31 +44,31 @@ jobs: pip install wheel python setup.py bdist_wheel -deploy: - runs-on: ubuntu-latest - needs: develop-matrix - if: github.event_name == 'release' && github.event.action == 'created' - steps: - - name: Checkout - uses: actions/checkout@v4 + deploy: + runs-on: ubuntu-latest + needs: develop-matrix + if: github.event_name == 'release' && github.event.action == 'created' + steps: + - name: Checkout + uses: actions/checkout@v4 - - name: Setup python - uses: actions/setup-python@v4 - with: - python-version: '3.9' + - name: Setup python + uses: actions/setup-python@v4 + with: + python-version: '3.9' - - name: Install twine - run: | - pip install --upgrade pip - pip install twine + - name: Install twine + run: | + pip install --upgrade pip + pip install twine - - name: Inspect dist files - run: | - ls -la dist/ + - name: Inspect dist files + run: | + ls -la dist/ - - name: Upload to PyPI using twine - run: | - twine upload --skip-existing dist/* - env: - TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} - TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + - name: Upload to PyPI using twine + run: | + twine upload --skip-existing dist/* + env: + TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} + TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}