From 24e60055bc42c862070fe7e654630b11e511eb56 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Wed, 6 Oct 2021 15:56:34 +0200 Subject: [PATCH] gha: Fix the trigger in the PyPI publication action --- .github/workflows/pypi.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index b49ca9f04..6e0882547 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -50,7 +50,7 @@ jobs: python -m build --sdist --wheel --outdir dist/ . - name: Publish distribution 📦 to Test PyPI - if: github.repository == ‘ElementsProject/lightning’ + if: github.repository == 'ElementsProject/lightning' uses: pypa/gh-action-pypi-publish@master env: WORKDIR: ${{ matrix.WORKDIR }} @@ -61,7 +61,7 @@ jobs: skip_existing: true - name: Publish distribution 📦 to PyPI - if: startsWith(github.ref, 'refs/tags') && github.repository == ‘ElementsProject/lightning’ + if: startsWith(github.ref, 'refs/tags') && github.repository == 'ElementsProject/lightning' uses: pypa/gh-action-pypi-publish@master env: WORKDIR: ${{ matrix.WORKDIR }}