Skip to content

Commit

Permalink
Merge pull request #139 from OZI-Project/rjdbcm-patch-5
Browse files Browse the repository at this point in the history
Update action.yml - fix context
  • Loading branch information
rjdbcm authored Aug 12, 2024
2 parents 933382e + a7fdfe9 commit f4172eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,13 @@ runs:
id: wheel-prerelease

- name: Build pure-Python wheel
if: job.steps.wheel.outcome == 'failure' && contains(fromJSON('["bugfix", "security1", "security2"]'), inputs.python-dist)
if: steps.wheel.outcome == 'failure' && contains(fromJSON('["bugfix", "security1", "security2"]'), inputs.python-dist)
run: |
python -m build --wheel
shell: bash

- name: Build pure-Python prerelease wheel
if: job.steps.wheel-prerelease.outcome == 'failure' && inputs.python-dist == 'prerelease'
if: steps.wheel-prerelease.outcome == 'failure' && inputs.python-dist == 'prerelease'
continue-on-error: true
run: |
python -m build --wheel
Expand Down

0 comments on commit f4172eb

Please sign in to comment.