feat(ci): add scheduled auto-release workflow
Lint Markdown files / markdown-lint (push) Successful in 52s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 16s
Build / build-arch-linux (push) Successful in 5m9s
Release / push-arch-linux (push) Successful in 7m44s
Release / sync-to-hub-docker-io (push) Successful in 8m0s

Introduce a cron-triggered auto-release workflow that runs on the second Sunday of each month,
creating a time-based tag in YYYY-MM format and dispatching the release workflow.

The release workflow is extended with a workflow_dispatch trigger accepting a tag input, so it can be
invoked both by tag pushes and programmatically by the auto-release. Version extraction is unified
via a dedicated step using `inputs.tag || github.ref_name` in both jobs.

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-08-21 09:45:28 +02:00
co-authored by Copilot
parent b66dac1342
commit e5a5630ef8
4 changed files with 113 additions and 19 deletions
+19 -17
View File
@@ -24,17 +24,18 @@ Here is an example based on ubuntu 18.04 to compile a PDF file with `latexmk` fr
root directory of your Latex files or change the `volume` option with the `${PWD}` variable.
```bash
$ docker run \
$ podman run \
--rm \
--user="$(shell id -u):$(shell id -g)" \
--net="none" \
--volume="${PWD}:/workspace" git.cryptic.systems/volker.raschek/latex:latest-archlinux \
latexmk \
-shell-escape \
-synctex=1 \
-interaction=nonstopmode \
-file-line-error \
-pdf index.tex
--workdir="${PWD}" \
--volume="${PWD}:${PWD}" \
git.cryptic.systems/volker.raschek/latex:latest-archlinux \
latexmk \
-shell-escape \
-synctex=1 \
-interaction=nonstopmode \
-file-line-error \
-pdf index.tex
```
### pdflatex
@@ -43,14 +44,15 @@ Here is a example based on ubuntu 18.04 to compile a PDF file with `pdflatex` fr
your root directory of your Latex files or change the `volume` option with the `${PWD}` variable.
```bash
$ docker run \
$ podman run \
--rm \
--user="$(shell id -u):$(shell id -g)" \
--net="none" \
--volume="${PWD}:/workspace" git.cryptic.systems/volker.raschek/latex:latest-archlinux \
pdflatex \
-shell-escape \
-synctex=1 \
-interaction=nonstopmode \
-enable-write18 index.tex
--workdir="${PWD}" \
--volume="${PWD}:${PWD}" \
git.cryptic.systems/volker.raschek/latex:latest-archlinux \
pdflatex \
-shell-escape \
-synctex=1 \
-interaction=nonstopmode \
-enable-write18 index.tex
```