Skip to content

Remove note about M1 not working from README #162

Remove note about M1 not working from README

Remove note about M1 not working from README #162

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@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Download and build MeCab
shell: bash
run: |
ci/macos-build.sh
- name: Upload Wheels
uses: actions/upload-artifact@v1
with:
name: osx-wheels
path: dist
- name: Publish to PyPI if tagged
if: startsWith(github.ref, 'refs/tags')
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
pip install twine
twine upload dist/fugashi*