2023-08-24 20:14:30 +00:00
|
|
|
---
|
|
|
|
when:
|
|
|
|
- event: [pull_request, tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
|
|
|
steps:
|
2023-12-23 22:26:57 +00:00
|
|
|
- name: build
|
2023-10-16 12:15:57 +00:00
|
|
|
image: docker.io/library/python:3.12
|
2023-08-24 20:14:30 +00:00
|
|
|
commands:
|
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
|
|
- poetry build
|
|
|
|
|
2023-12-23 22:26:57 +00:00
|
|
|
- name: checksum
|
2023-08-24 20:14:30 +00:00
|
|
|
image: quay.io/thegeeklab/alpine-tools
|
|
|
|
commands:
|
|
|
|
- cd dist/ && sha256sum * > ../sha256sum.txt
|
|
|
|
|
2023-12-23 22:26:57 +00:00
|
|
|
- name: changelog
|
2023-10-16 13:42:36 +00:00
|
|
|
image: quay.io/thegeeklab/git-sv
|
2023-08-24 20:14:30 +00:00
|
|
|
commands:
|
2023-10-16 13:42:36 +00:00
|
|
|
- git sv current-version
|
2023-10-18 11:59:28 +00:00
|
|
|
- git sv release-notes -t ${CI_COMMIT_TAG:-next} -o CHANGELOG.md
|
|
|
|
- cat CHANGELOG.md
|
2023-08-24 20:14:30 +00:00
|
|
|
|
2023-12-23 22:26:57 +00:00
|
|
|
- name: publish-github
|
2023-08-24 20:14:30 +00:00
|
|
|
image: docker.io/plugins/github-release
|
|
|
|
settings:
|
|
|
|
api_key:
|
|
|
|
from_secret: github_token
|
|
|
|
files:
|
|
|
|
- dist/*
|
|
|
|
- sha256sum.txt
|
|
|
|
note: CHANGELOG.md
|
|
|
|
overwrite: true
|
|
|
|
title: ${CI_COMMIT_TAG}
|
|
|
|
when:
|
|
|
|
- event: [tag]
|
|
|
|
|
2023-12-23 22:26:57 +00:00
|
|
|
- name: publish-pypi
|
2023-10-16 12:15:57 +00:00
|
|
|
image: docker.io/library/python:3.12
|
2024-10-27 20:08:30 +00:00
|
|
|
environment:
|
|
|
|
POETRY_HTTP_BASIC_PYPI_PASSWORD:
|
|
|
|
from_secret: pypi_password
|
|
|
|
POETRY_HTTP_BASIC_PYPI_USERNAME:
|
|
|
|
from_secret: pypi_username
|
2023-08-24 20:14:30 +00:00
|
|
|
commands:
|
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
|
|
- poetry publish -n
|
|
|
|
when:
|
|
|
|
- event: [tag]
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- lint
|
|
|
|
- test
|