dotnet-1.32.0 #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Build Assets | |
on: | |
release: | |
types: [published] | |
jobs: | |
python-build-assets: | |
if: github.event_name == 'release' && startsWith(github.event.release.tag_name, 'python-') | |
name: Python Build Assets and add to Release | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
env: | |
UV_PYTHON: "3.10" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up uv | |
uses: astral-sh/setup-uv@v4 | |
with: | |
version: "0.5.x" | |
enable-cache: true | |
cache-suffix: ${{ runner.os }}-${{ matrix.python-version }} | |
- name: Check version | |
run: | | |
echo "Building and uploading Python package version: ${{ github.event.release.tag_name }}" | |
- name: Build the package | |
run: cd python && make build | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
python/dist/* |