mirror of
https://codeberg.org/openpgp/notes.git
synced 2024-11-23 08:02:05 +01:00
Merge branch 'draft' into tammi-ch3-MAC
This commit is contained in:
commit
55a6aac9dd
3 changed files with 28 additions and 1 deletions
23
.woodpecker/links.yml
Normal file
23
.woodpecker/links.yml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# SPDX-FileCopyrightText: 2023 The "Notes on OpenPGP" project
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
|
clone:
|
||||||
|
git:
|
||||||
|
image: woodpeckerci/plugin-git
|
||||||
|
settings:
|
||||||
|
partial: true
|
||||||
|
lfs: false
|
||||||
|
|
||||||
|
when:
|
||||||
|
branch: draft
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
steps:
|
||||||
|
link-check:
|
||||||
|
image: archlinux:latest
|
||||||
|
commands:
|
||||||
|
- pacman -Sy --needed --noconfirm archlinux-keyring
|
||||||
|
- pacman -Syu --needed --noconfirm lychee make python-myst-parser python-sphinx
|
||||||
|
- make -C book html-linkcheck
|
|
@ -8,6 +8,7 @@
|
||||||
# from the environment for the first two.
|
# from the environment for the first two.
|
||||||
SPHINXOPTS ?=
|
SPHINXOPTS ?=
|
||||||
SPHINXBUILD ?= sphinx-build
|
SPHINXBUILD ?= sphinx-build
|
||||||
|
LYCHEE ?= lychee
|
||||||
SOURCEDIR = source
|
SOURCEDIR = source
|
||||||
BUILDDIR = build
|
BUILDDIR = build
|
||||||
|
|
||||||
|
@ -15,6 +16,9 @@ BUILDDIR = build
|
||||||
help:
|
help:
|
||||||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
||||||
|
|
||||||
|
html-linkcheck: html
|
||||||
|
@$(LYCHEE) "$(BUILDDIR)/html/"*.html
|
||||||
|
|
||||||
.PHONY: help Makefile
|
.PHONY: help Makefile
|
||||||
|
|
||||||
# Catch-all target: route all unknown targets to Sphinx using the new
|
# Catch-all target: route all unknown targets to Sphinx using the new
|
||||||
|
|
|
@ -47,4 +47,4 @@ Produce text around discussion: https://mailarchive.ietf.org/arch/msg/openpgp/ZT
|
||||||
|
|
||||||
### SKESK
|
### SKESK
|
||||||
|
|
||||||
Also see https://flowcrypt.com/docs/guide/send-and-receive/send-password-protected.html
|
Also see https://flowcrypt.com/docs/guide/send-and-receive/send-password-protected-emails.html
|
||||||
|
|
Loading…
Reference in a new issue