mirror of
https://github.com/explosion/spaCy.git
synced 2026-01-12 11:41:10 +03:00
22 lines
530 B
YAML
22 lines
530 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
# ytf did they invent their own syntax that's almost regex?
|
|
# ** matches 'zero or more of any character'
|
|
- 'release-v[0-9]+.[0-9]+.[0-9]+**'
|
|
- 'prerelease-v[0-9]+.[0-9]+.[0-9]+**'
|
|
jobs:
|
|
build_wheels:
|
|
uses: explosion/gha-cibuildwheel/.github/workflows/cibuildwheel.yml@main
|
|
permissions:
|
|
contents: write
|
|
actions: read
|
|
with:
|
|
wheel-name-pattern: "spacy-*.whl"
|
|
pure-python: false
|
|
secrets:
|
|
gh-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|