---
include:
  - remote: https://jobs.just-ci.dev/HEAD/python/generic.yml

python:build:
  extends: .python:pre
  stage: build
  variables:
    JOB_PACKAGE: build
  script:
    - !reference [".python:pre", script]
    - python -m build --version
    - python -m build . --outdir ${CI_PROJECT_DIR}/dist
  artifacts:
    paths:
      - dist
  needs: []
