Skip to content

Commit ab0e3e3

Browse files
GitHub SSH Key v0.4.2
1 parent 185af4a commit ab0e3e3

File tree

8 files changed

+35
-11
lines changed

8 files changed

+35
-11
lines changed

.github/workflows/publish.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Publish Python Package
2+
3+
on:
4+
release:
5+
types: [published]
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- name: Set up Python
13+
uses: actions/setup-python@v4
14+
with:
15+
python-version: "3.x"
16+
17+
- name: Install dependencies
18+
run: pip install build twine
19+
20+
- name: Build package
21+
run: python -m build
22+
23+
- name: Upload to PyPI
24+
run: twine upload dist/* --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# github-ssh-key <sup>v0.4.1</sup>
1+
# github-ssh-key <sup>v0.4.2</sup>
22
___github-ssh-key___ - GitHub ssh key manager. Console utility for creating, getting, testing,
33
using public ssh keys for GitHub.
44
***
@@ -163,6 +163,6 @@ To get help with commands, use:
163163
--------------------------------------------------------
164164
Licensed under the terms of the BSD 3-Clause License
165165
(see LICENSE for details).
166-
Copyright © 2018-2024, A.A. Suvorov
166+
Copyright © 2018-2025, A.A. Suvorov
167167
All rights reserved.
168168
--------------------------------------------------------

github-ssh-key.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2018-2024, A.A. Suvorov
4+
# Copyright © 2018-2025, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab

github_ssh_key/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2018-2024, A.A. Suvorov
4+
# Copyright © 2018-2025, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab
88
# --------------------------------------------------------
99
"""GitHub ssh key manager."""
10-
__version__ = '0.4.1'
10+
__version__ = '0.4.2'

github_ssh_key/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2018-2024, A.A. Suvorov
4+
# Copyright © 2018-2025, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab
@@ -21,7 +21,7 @@ def cli(ctx):
2121
"""
2222
GitHub ssh key manager.
2323
24-
Copyright © 2018-2024, A.A. Suvorov; All rights reserved.
24+
Copyright © 2018-2025, A.A. Suvorov; All rights reserved.
2525
2626
https://github.com/smartlegionlab/
2727

github_ssh_key/commander.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2018-2024, A.A. Suvorov
4+
# Copyright © 2018-2025, A.A. Suvorov
55
# All rights reserved.
66
# -------------------------------------------------------
77
# https://github.com/smartlegionlab

github_ssh_key/manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2018-2024, A.A. Suvorov
4+
# Copyright © 2018-2025, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab
@@ -18,5 +18,5 @@ class CliManager(Informer):
1818
title = "Smart Legion Lab"
1919
description = "Github Ssh Key Manager"
2020
url = "https://github.com/smartlegionlab"
21-
copyright = "Copyright © 2018-2024, A.A. Suvorov"
21+
copyright = "Copyright © 2018-2025, A.A. Suvorov"
2222
version = __version__

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2018-2024, A.A. Suvorov
4+
# Copyright © 2018-2025, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab

0 commit comments

Comments
 (0)