ci: better naming scheme for folders

This commit is contained in:
silver 2024-05-20 03:41:38 +01:00
parent 2c87d9ae12
commit 8b96e27884
Signed by: silver
GPG key ID: 54E2C71918E93B74
10 changed files with 18 additions and 16 deletions

View file

@ -3,8 +3,8 @@
root="$PWD"
folder="Budget"
folder_html="Budget_html"
folder_pdf="Budget_pdf"
folder_html="html_${folder}"
folder_pdf="pdf_${folder}"
function build_html() {
# used to match **

View file

@ -3,8 +3,8 @@
root="$PWD"
folder="Handovers"
folder_html="${folder}_html"
folder_pdf="${folder}_pdf"
folder_html="html_${folder}"
folder_pdf="pdf_${folder}"
function build_html() {
# used to match **

View file

@ -2,8 +2,8 @@
root="$PWD"
folder_html="Minutes_html"
folder_pdf="Minutes_pdf"
folder_html="html_Minutes"
folder_pdf="pdf_Minutes"
# make teh html files first
function build_html() {

View file

@ -9,7 +9,7 @@ indentation = 2
src = "./Budget"
# Optional
dest= "./Budget_html"
dest= "./html_Budget"
# html blocks you dont want to include in teh finished page
# Optional

View file

@ -9,7 +9,7 @@ indentation = 2
src = "./Handovers"
# Optional
dest= "./Handovers_html"
dest= "./html_Handovers"
# html blocks you dont want to include in teh finished page
# Optional