WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Bump cibuildwheel in osx build #223

Bump cibuildwheel in osx build

Bump cibuildwheel in osx build #223

Workflow file for this run

name: Build OSX wheels
env:
CIBW_ARCHS_MACOS: "x86_64"
on: [push]
jobs:
build_osx:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: '>=3.9 <3.15'
- name: Download and build MeCab
shell: bash
run: |
.github/macos-build.sh
- name: Upload Wheels
uses: actions/upload-artifact@v4
with:
name: osx-wheels
path: dist
- name: Publish to PyPI if tagged
if: startsWith(github.ref, 'refs/tags')
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
pip install twine
twine upload dist/fugashi*