Skip to content

Commit

Permalink
Fix release if
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermef committed Feb 13, 2022
1 parent 17cfe08 commit f2e1ab2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand Down

0 comments on commit f2e1ab2

Please sign in to comment.