From f2e1ab2513a3e13a6187fb9ab4c3af2f8376f74f Mon Sep 17 00:00:00 2001 From: Guilherme Souza <101073+guilhermef@users.noreply.github.com> Date: Sun, 13 Feb 2022 18:24:35 +0100 Subject: [PATCH] Fix release if --- .github/workflows/release-please.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 744210d..01f278a 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -31,17 +31,17 @@ jobs: path: thumbor_plugins/${{ matrix.subject }} package-name: ${{ env.PACKAGE_NAME }} - uses: actions/checkout@v2 - if: ${{ steps.release.outputs.release_created }} + if: ${{ steps.release.outputs.releases_created }} - uses: actions/setup-python@v2 - if: ${{ steps.release.outputs.release_created }} + if: ${{ steps.release.outputs.releases_created }} with: python-version: '3.x' - name: Build package - if: ${{ steps.release.outputs.release_created }} + if: ${{ steps.release.outputs.releases_created }} working-directory: ./thumbor_plugins/${{ matrix.subject }} run: python -m build - name: Publish a Python distribution to PyPI - if: ${{ steps.release.outputs.release_created }} + if: ${{ steps.release.outputs.releases_created }} uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__