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 3ac11ff commit a94b6f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildAndSendSignatures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ jobs:
if [ "${template_modified}" = "false" ]; then
for file in ${input_text}; do
echo value $file
if grep -q "/" "${file}"; then
if echo "${file}" | grep -q "/"; then
if [ "$(echo "${file}" | cut -f1 -d "/")" = "data" ]; then
if grep -q "." "${file}"; then
if echo "${file}" | grep -q "."; then
signatures_to_build="$(echo "${file}" | cut -d "/" -f2 | cut -d "." -f1) ${signatures_to_build}"
fi
fi
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 a94b6f3

Please sign in to comment.