From 7fdef6003fea91ed1132b0fabf70628b46870b13 Mon Sep 17 00:00:00 2001 From: Frederik Beimgraben <46428177+frederikbeimgraben@users.noreply.github.com> Date: Fri, 31 Oct 2025 15:03:28 +0100 Subject: [PATCH] Update README.md --- README.md | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4e44396..a9b61a6 100644 --- a/README.md +++ b/README.md @@ -294,14 +294,6 @@ latexmk -xelatex -shell-escape -bibtex Main.tex The project includes GitHub Actions workflows for automated building and testing: -#### Build Workflow (`makefile.yml`) -- **Triggers on:** Push to main, Pull requests -- **Actions:** - - Builds the document using Docker - - Uploads the PDF as an artifact - - Available for 30 days after build - - Build logs uploaded on failure - #### Release Workflow (`release.yml`) - **Triggers on:** Version tags (e.g., `v1.0.0`, `release-2024-10`) - **Actions:** @@ -316,10 +308,10 @@ To create a new release with the PDF: ```bash # Tag the current commit -git tag -a v1.0.0 -m "Release version 1.0.0" +git tag -a v1.X.X -m "Release version 1.X.X" # Push the tag to trigger the release workflow -git push origin v1.0.0 +git push origin v1.X.X ``` The workflow will automatically: