From 62df0be52c7866311f7537cc223f0271726d460e Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Wed, 25 Oct 2023 10:35:58 +0100 Subject: [PATCH] remove spaces in front of github release section --- .github/workflows/tests.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6610fb9..e968fd6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -111,19 +111,19 @@ jobs: twine check dist/* twine upload dist/* - deploy-github-release: - # only deploy on tags, see https://stackoverflow.com/a/58478262/1320237 - if: startsWith(github.ref, 'refs/tags/v') - needs: - - run-tests - runs-on: ubuntu-latest - environment: - name: github-release - steps: - - uses: actions/checkout@v2 - - name: create release - uses: elgohr/Github-Release-Action@v4 - env: - GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} - with: - title: ${{ github.ref_name }} + deploy-github-release: + # only deploy on tags, see https://stackoverflow.com/a/58478262/1320237 + if: startsWith(github.ref, 'refs/tags/v') + needs: + - run-tests + runs-on: ubuntu-latest + environment: + name: github-release + steps: + - uses: actions/checkout@v2 + - name: create release + uses: elgohr/Github-Release-Action@v4 + env: + GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} + with: + title: ${{ github.ref_name }}