Skip to content

Build distribution 📦 #209

Build distribution 📦

Build distribution 📦 #209

Workflow file for this run

name: Build distribution 📦
on:
workflow_run:
workflows: ["Changelog ⛰️"]
types:
- completed
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
steps:
- name: Checkout ${{ github.ref }}
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "uv.lock"
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python
run: |
uv python install ${{ matrix.python-version }}
- name: Install Dependencies
run: |
uv sync --frozen
- name: Build Package
run: |
uv build
- name: Store Wheel Artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/*.whl