Signed-off-by: John Snow <js...@redhat.com> --- .gitlab-ci.d/build.yml | 13 +++++++++++++ .gitlab-ci.d/index.yml | 2 ++ 2 files changed, 15 insertions(+) create mode 100644 .gitlab-ci.d/build.yml
diff --git a/.gitlab-ci.d/build.yml b/.gitlab-ci.d/build.yml new file mode 100644 index 0000000..6a68408 --- /dev/null +++ b/.gitlab-ci.d/build.yml @@ -0,0 +1,13 @@ +build-package: + stage: build + image: $CI_REGISTRY_IMAGE/python:latest + needs: + job: python-container + script: + - python3 -m build + artifacts: + name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA" + paths: + - dist/* + variables: + GIT_DEPTH: 1 diff --git a/.gitlab-ci.d/index.yml b/.gitlab-ci.d/index.yml index 5ef8fcf..cf61dec 100644 --- a/.gitlab-ci.d/index.yml +++ b/.gitlab-ci.d/index.yml @@ -3,6 +3,8 @@ stages: - containers + - build include: - local: '/.gitlab-ci.d/containers.yml' + - local: '/.gitlab-ci.d/build.yml' -- 2.31.1