This commit is contained in:
commit
4da8562871
11
.gitea/workflows/cd.yaml
Normal file
11
.gitea/workflows/cd.yaml
Normal file
|
@ -0,0 +1,11 @@
|
|||
name: "CD"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "release"
|
||||
|
||||
jobs:
|
||||
checks:
|
||||
name: "Checks"
|
||||
uses: "./.gitea/workflows/checks.yaml"
|
27
.gitea/workflows/checks.yaml
Normal file
27
.gitea/workflows/checks.yaml
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: "Checks"
|
||||
on:
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
run-checks:
|
||||
name: "Run checks"
|
||||
runs-on: "ubuntu-latest"
|
||||
steps:
|
||||
- name: "Check out the code"
|
||||
uses: "actions/checkout@v4"
|
||||
- name: "Set up Python 3.10"
|
||||
uses: "actions/setup-python@v5"
|
||||
with:
|
||||
python-version: "3.10"
|
||||
- name: "Set up poetry"
|
||||
uses: "Gr1N/setup-poetry@v8"
|
||||
with:
|
||||
poetry-version: "1.7.1"
|
||||
- name: "Install deps"
|
||||
run: |
|
||||
set -x
|
||||
poetry install
|
||||
- name: "Run CI task"
|
||||
run: |
|
||||
set -x
|
||||
poetry run inv ci
|
|
@ -1,5 +1,10 @@
|
|||
## Keep It Secret Changelog
|
||||
|
||||
#### v1.2.1 (2024-05-29)
|
||||
|
||||
* Gitea Actions integration.
|
||||
* `README.md` language fixes.
|
||||
|
||||
#### v1.2.0 (2024-02-08)
|
||||
|
||||
* Hashicorp Vault integration.
|
||||
|
|
|
@ -65,7 +65,7 @@ to provide secrets suitable for the development environment:
|
|||
```
|
||||
|
||||
The `ProductionSecrets` class uses environment variables and AWS Secrets
|
||||
Manager to provide secrets suitable for the development environment:
|
||||
Manager to provide secrets suitable for the production environment:
|
||||
|
||||
```
|
||||
>>> production_secrets = ProductionSecrets()
|
||||
|
|
|
@ -11,10 +11,10 @@
|
|||
project = 'Keep It Secret'
|
||||
copyright = '2023-present Tomek Wójcik'
|
||||
author = 'Tomek Wójcik'
|
||||
version = '1.2.0'
|
||||
version = '1.2.1'
|
||||
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '1.2.0'
|
||||
release = '1.2.1'
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||||
|
|
|
@ -6,7 +6,7 @@ from .fields import ( # noqa: F401
|
|||
)
|
||||
from .secrets import Secrets # noqa: F401
|
||||
|
||||
__version__ = '1.2.0'
|
||||
__version__ = '1.2.1'
|
||||
|
||||
__all__ = [
|
||||
'AbstractField',
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "keep-it-secret"
|
||||
version = "1.2.0"
|
||||
version = "1.2.1"
|
||||
description = "Keep It Secret by BTHLabs"
|
||||
authors = ["Tomek Wójcik <contact@bthlabs.pl>"]
|
||||
maintainers = ["BTHLabs <contact@bthlabs.pl>"]
|
||||
|
|
Loading…
Reference in New Issue
Block a user