Skip to content

Commit

Permalink
Fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed May 20, 2024
1 parent 619fbee commit a34ee3d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-and-upload-wheels-for-qe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
build-artifacts:
uses: ./.github/workflows/build-wheels.yml
with:
apply-no-optimizations: ${{ inputs.disable-optimizations }}
# In a push event, any input values default to ''
# https://github.com/orgs/community/discussions/29242#discussioncomment-5063461
apply-no-optimizations: ${{ github.event_name == 'workflow_dispatch' && inputs.disable-optimizations || false }}

upload-to-jfrog:
needs: build-artifacts
Expand Down

0 comments on commit a34ee3d

Please sign in to comment.