Skip to content

fix: string and binary type #11

fix: string and binary type

fix: string and binary type #11

Workflow file for this run

name: Python
on:
push:
branches:
- main
paths:
- 'python/**'
pull_request:
branches:
- main
paths:
- 'python/**'
- ".github/workflows/python.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
environment:
name: pypi.org
url: https://pypi.org/p/databend-udf/
steps:
- uses: actions/checkout@v4
- name: Build package
working-directory: python
run: |
python -m pip install build
python -m build
- uses: pypa/gh-action-pypi-publish@release/v1
if: github.event_name == 'push'
with:
packages-dir: python/dist/
skip-existing: true