Skip to content

typo

typo #59

Workflow file for this run

name: Build wheel on osx
on: [push]
env:
CIBW_BUILD_VERBOSITY: 1
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: "pytest --pyargs scrypt"
jobs:
build_osx_wheels:
name: Build wheels on macos-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
# Used to host cibuildwheel
- uses: actions/setup-python@v5
- name: Install cibuildwheel
run: python -m pip install cibuildwheel
- name: Install openssl
run: brew install openssl@1.1
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
# Disable explicitly building PyPy wheels
CFLAGS: "-I/opt/homebrew/opt/openssl@1.1/include"
LDFLAGS: "-L/opt/homebrew/opt/openssl@1.1/lib"
CIBW_SKIP: pp*
CIBW_PRERELEASE_PYTHONS: False
- uses: actions/upload-artifact@v4
with:
path: wheelhouse/*.whl
upload_pypi:
name: Upload to PyPI (prod)
needs: [build_osx_wheels]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@v1.5.0
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}