Files
Chromy/.gitea/workflows/build.yaml
T
Matteo Rosati 8c59472f57
build / build (push) Failing after 36s
build action
2026-04-22 23:20:22 +02:00

30 lines
513 B
YAML

name: build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
run: |
curl -Ls https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Build package
run: |
uv build
- name: Upload wheel
uses: actions/upload-artifact@v4
with:
name: python-wheel
path: dist/*.whl