Skip to content

Commit

Permalink
trigger workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
AleixMT committed Apr 9, 2024
1 parent f82ce2f commit 3ac11ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/buildAndSendSignatures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,12 @@ jobs:
signatures_to_build=""
if [ "${template_modified}" = "false" ]; then
for file in ${input_text}; do
echo for
if grep -q "/" "${file}" && [ "$(echo "${file}" | cut -f1 -d "/")" = "data" ]; then
if grep -q "." "${file}"; then
signatures_to_build="$(echo "${file}" | cut -d "/" -f2 | cut -d "." -f1) ${signatures_to_build}"
echo value $file
if grep -q "/" "${file}"; then
if [ "$(echo "${file}" | cut -f1 -d "/")" = "data" ]; then
if grep -q "." "${file}"; then
signatures_to_build="$(echo "${file}" | cut -d "/" -f2 | cut -d "." -f1) ${signatures_to_build}"
fi
fi
fi
done
Expand Down
2 changes: 1 addition & 1 deletion data/aleixmt.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"email": "{{EMAIL}}",
"position": "{{POSITION}}",
"linkedin": "{{LINKEDIN}}"
}
}

0 comments on commit 3ac11ff

Please sign in to comment.