Adding upstream version 26.3.8.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
7ee28625fb
commit
b80c44840a
89 changed files with 59179 additions and 57645 deletions
16
.github/workflows/python-publish.yml
vendored
16
.github/workflows/python-publish.yml
vendored
|
@ -66,9 +66,9 @@ jobs:
|
|||
manylinux: auto
|
||||
working-directory: ./sqlglotrs
|
||||
- name: Upload wheels
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: wheels
|
||||
name: wheels-${{ matrix.os }}-${{ matrix.target }}
|
||||
path: sqlglotrs/dist
|
||||
|
||||
sdist-rs:
|
||||
|
@ -84,9 +84,9 @@ jobs:
|
|||
args: --out dist
|
||||
working-directory: ./sqlglotrs
|
||||
- name: Upload sdist
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: wheels
|
||||
name: wheels-sdist
|
||||
path: sqlglotrs/dist
|
||||
|
||||
deploy-rs:
|
||||
|
@ -94,16 +94,18 @@ jobs:
|
|||
if: needs.should-deploy-rs.outputs.deploy == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/download-artifact@v3
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: wheels
|
||||
pattern: wheels-*
|
||||
path: sqlglotrs/dist
|
||||
- name: Publish to PyPI
|
||||
uses: PyO3/maturin-action@v1
|
||||
env:
|
||||
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
||||
with:
|
||||
command: upload
|
||||
args: --non-interactive --skip-existing *
|
||||
args: --non-interactive --skip-existing dist/wheels-*/*
|
||||
working-directory: ./sqlglotrs
|
||||
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue