Skip to content

Commit 63c7406

Browse files
authored
Documentation and naming fixes (#74)
* some documentation and naming fixes Signed-off-by: Christian Henkel <christian.henkel2@de.bosch.com> * a whitespace Signed-off-by: Christian Henkel <christian.henkel2@de.bosch.com> --------- Signed-off-by: Christian Henkel <christian.henkel2@de.bosch.com>
1 parent c55ea2e commit 63c7406

File tree

4 files changed

+45
-37
lines changed

4 files changed

+45
-37
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
name: Release
12
on:
23
push:
34
tags:
45
- "[0-9]+.[0-9]+.[0-9]+"
56
jobs:
67
test:
8+
name: py${{ matrix.python-version }} @ ${{ matrix.os }}
79
strategy:
810
fail-fast: true
911
matrix:
@@ -47,6 +49,7 @@ jobs:
4749
job-summary: true
4850

4951
release:
52+
name: Release
5053
runs-on: ubuntu-latest
5154
needs: test
5255
steps:

.github/workflows/todo-to-issue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: "Run TODO to Issue"
1+
name: "TODO to Issue"
22
on:
33
push:
44
branches: [ main ]
55
jobs:
6-
build:
6+
todo_to_issue:
77
runs-on: "ubuntu-latest"
88
steps:
99
- uses: "actions/checkout@v3"

how_to_release.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Note for me
2+
3+
## Requirements
4+
5+
```bash
6+
pip install bumpver build twine
7+
```
8+
9+
## Steps
10+
11+
How to increase the version number:
12+
13+
```bash
14+
git checkout main
15+
git pull
16+
bumpver update --patch # or --minor or --major
17+
git push
18+
git push --tags
19+
```
20+
21+
This triggers the CI to build and release the package.
22+
23+
## ALL BELOW IS PERFORMED AUTOMATICALLY
24+
25+
> **_ATTENTION:_**
26+
The following steps are performed automatically
27+
28+
(by the [CI release job](.github/workflows/release.yml))
29+
30+
If you want to release manually:
31+
32+
```bash
33+
python -m build
34+
twine check dist/*
35+
twine upload dist/* # user: ct2034_0
36+
```
37+
38+
## source
39+
40+
<https://realpython.com/pypi-publish-python-package/#build-your-package>

how_to_update.md

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)