Add VAD example for Dart API (#996)
This commit is contained in:
12
.github/workflows/build-wheels-macos-x64.yaml
vendored
12
.github/workflows/build-wheels-macos-x64.yaml
vendored
@@ -65,7 +65,7 @@ jobs:
|
||||
path: ./wheelhouse/*.whl
|
||||
|
||||
- name: Publish to huggingface
|
||||
if: matrix.python-version == 'cp38'
|
||||
if: matrix.python-version == 'cp39'
|
||||
env:
|
||||
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
||||
uses: nick-fields/retry@v3
|
||||
@@ -99,7 +99,13 @@ jobs:
|
||||
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
|
||||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
||||
run: |
|
||||
python3 -m pip install --break-system-packages --upgrade pip
|
||||
python3 -m pip install --break-system-packages wheel twine setuptools
|
||||
opts='--break-system-packages'
|
||||
v=${{ matrix.python-version }}
|
||||
if [[ $v == cp38 || $v == cp39 ]]; then
|
||||
opts=''
|
||||
fi
|
||||
|
||||
python3 -m pip install $opts --upgrade pip
|
||||
python3 -m pip install $opts wheel twine setuptools
|
||||
|
||||
twine upload ./wheelhouse/*.whl
|
||||
|
||||
Reference in New Issue
Block a user