Skip to content

Commit

Permalink
docs(README): fix example action definition usage for conditionals
Browse files Browse the repository at this point in the history
  • Loading branch information
codejedi365 committed Jun 5, 2024
1 parent 874d466 commit 923d4d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ jobs:

- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@v1
if: ${{ steps.release.outputs.released }} == 'true'
if: steps.release.outputs.released == 'true'

- name: Publish package to GitHub Release
uses: python-semantic-release/upload-to-gh-release@v9.8.0
if: ${{ steps.release.outputs.released }} == 'true'
if: steps.release.outputs.released == 'true'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.release.outputs.tag }}
Expand Down

0 comments on commit 923d4d3

Please sign in to comment.