Skip to content

Commit

Permalink
Merge pull request #52 from OZI-Project/bump-pyc_wheel
Browse files Browse the repository at this point in the history
Update action.yml - individual python version wheel compilers.
  • Loading branch information
rjdbcm authored Mar 27, 2024
2 parents 26876bc + b2f4ffa commit 9a22516
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,24 +108,21 @@ runs:

- name: Compile wheel
if: inputs.python-dist == 'py310' && (steps.release.outputs.released == 'true' || steps.draft.outputs.created == 'true')
uses: OZI-Project/pyc_wheel@01be4e2c2c04f323de3889ef6378332876515136
uses: OZI-Project/pyc_wheel-cp310@1.4.0
with:
filename: ${{ github.event.repository.name }}-${{ steps.version.outputs.tag }}-py3-none-any.whl
python-version: '3.10'


- name: Compile wheel
if: inputs.python-dist == 'py311' && (steps.release.outputs.released == 'true' || steps.draft.outputs.created == 'true')
uses: OZI-Project/pyc_wheel@01be4e2c2c04f323de3889ef6378332876515136
uses: OZI-Project/pyc_wheel-cp311@1.4.0
with:
filename: ${{ github.event.repository.name }}-${{ steps.version.outputs.tag }}-py3-none-any.whl
python-version: '3.11'

- name: Compile wheel
if: inputs.python-dist == 'py312' && (steps.release.outputs.released == 'true' || steps.draft.outputs.created == 'true')
uses: OZI-Project/pyc_wheel@01be4e2c2c04f323de3889ef6378332876515136
uses: OZI-Project/pyc_wheel-cp312@1.4.0
with:
filename: ${{ github.event.repository.name }}-${{ steps.version.outputs.tag }}-py3-none-any.whl
python-version: '3.12'

- name: Rename wheel
run: |
Expand Down

0 comments on commit 9a22516

Please sign in to comment.