Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pyc_wheel action to 1.3 #49

Merged
merged 1 commit into from
Mar 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,21 +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@aed7e184f45fae45efd480a85990359f3c93051f
uses: OZI-Project/pyc_wheel@58ae69821e5bb259cfe0ab4abfe1b57b59cde93a
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@aed7e184f45fae45efd480a85990359f3c93051f
uses: OZI-Project/pyc_wheel@58ae69821e5bb259cfe0ab4abfe1b57b59cde93a
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@aed7e184f45fae45efd480a85990359f3c93051f
uses: OZI-Project/pyc_wheel@58ae69821e5bb259cfe0ab4abfe1b57b59cde93a
with:
filename: ${{ github.event.repository.name }}-${{ steps.version.outputs.tag }}-py3-none-any.whl
python-version: '3.12'
Expand Down