Skip to content

Commit dd65d6b

Browse files
authored
🔒 Sign add-on with Codenotary Community Attestation Service (CAS) (#181)
* 🔒 Sign add-on with Codenotary Community Attestation Service (CAS) * 👕 Fix yamllint warning
1 parent d6270f2 commit dd65d6b

File tree

5 files changed

+54
-52
lines changed

5 files changed

+54
-52
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ jobs:
1616
workflows:
1717
uses: hassio-addons/workflows/.github/workflows/addon-deploy.yaml@main
1818
secrets:
19+
CAS_API_KEY: ${{ secrets.CAS_API_KEY }}
1920
DISPATCH_TOKEN: ${{ secrets.DISPATCH_TOKEN }}

bookstack/build.json

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

bookstack/build.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
build_from:
3+
aarch64: ghcr.io/hassio-addons/base/aarch64:11.1.2
4+
amd64: ghcr.io/hassio-addons/base/amd64:11.1.2
5+
armhf: ghcr.io/hassio-addons/base/armhf:11.1.2
6+
armv7: ghcr.io/hassio-addons/base/armv7:11.1.2
7+
i386: ghcr.io/hassio-addons/base/i386:11.1.2
8+
codenotary:
9+
base_image: codenotary@frenck.dev
10+
signer: codenotary@frenck.dev

bookstack/config.json

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

bookstack/config.yaml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
name: Bookstack
3+
version: dev
4+
slug: bookstack
5+
description: Simple & Free Wiki Software
6+
url: https://github.com/hassio-addons/addon-bookstack
7+
codenotary: codenotary@frenck.dev
8+
webui: "[PROTO:ssl]://[HOST]:[PORT:80]"
9+
init: false
10+
arch:
11+
- aarch64
12+
- amd64
13+
- armhf
14+
- armv7
15+
- i386
16+
services:
17+
- mysql:want
18+
map:
19+
- ssl
20+
ports:
21+
80/tcp: 2665
22+
ports_description:
23+
80/tcp: Web interface
24+
options:
25+
envvars: []
26+
ssl: false
27+
certfile: fullchain.pem
28+
keyfile: privkey.pem
29+
schema:
30+
remote_mysql_host: str?
31+
remote_mysql_database: str?
32+
remote_mysql_username: str?
33+
remote_mysql_password: password?
34+
remote_mysql_port: int?
35+
show_appkey: bool?
36+
appkey: str?
37+
log_level: list(trace|debug|info|notice|warning|error|fatal)?
38+
certfile: str
39+
keyfile: str
40+
ssl: bool
41+
envvars:
42+
- name: str
43+
value: str

0 commit comments

Comments
 (0)