2023-08-24 20:56:04 +00:00
|
|
|
---
|
|
|
|
when:
|
|
|
|
- event: [pull_request, tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
|
|
|
steps:
|
2023-12-23 22:25:22 +00:00
|
|
|
- name: build
|
2023-10-16 12:15:38 +00:00
|
|
|
image: docker.io/library/python:3.12
|
2023-08-24 20:56:04 +00:00
|
|
|
commands:
|
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
|
|
- poetry build
|
|
|
|
|
2023-12-23 22:25:22 +00:00
|
|
|
- name: checksum
|
2023-08-24 20:56:04 +00:00
|
|
|
image: quay.io/thegeeklab/alpine-tools
|
|
|
|
commands:
|
|
|
|
- cd dist/ && sha256sum * > ../sha256sum.txt
|
|
|
|
|
2023-12-23 22:25:22 +00:00
|
|
|
- name: changelog
|
2023-10-16 13:42:46 +00:00
|
|
|
image: quay.io/thegeeklab/git-sv
|
2023-08-24 20:56:04 +00:00
|
|
|
commands:
|
2023-10-16 13:42:46 +00:00
|
|
|
- git sv current-version
|
2023-10-18 11:59:26 +00:00
|
|
|
- git sv release-notes -t ${CI_COMMIT_TAG:-next} -o CHANGELOG.md
|
|
|
|
- cat CHANGELOG.md
|
2023-08-24 20:56:04 +00:00
|
|
|
|
2023-12-23 22:25:22 +00:00
|
|
|
- name: publish-github
|
2023-08-24 20:56:04 +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:25:22 +00:00
|
|
|
- name: publish-pypi
|
2023-10-16 12:15:38 +00:00
|
|
|
image: docker.io/library/python:3.12
|
2023-08-24 20:56:04 +00:00
|
|
|
secrets:
|
2023-12-23 22:25:22 +00:00
|
|
|
- source: pypi_password
|
|
|
|
target: POETRY_HTTP_BASIC_PYPI_PASSWORD
|
|
|
|
- source: pypi_username
|
|
|
|
target: POETRY_HTTP_BASIC_PYPI_USERNAME
|
2023-08-24 20:56:04 +00:00
|
|
|
commands:
|
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
|
|
- poetry publish -n
|
|
|
|
when:
|
|
|
|
- event: [tag]
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- lint
|
|
|
|
- test
|