Skip to content

Commit

Permalink
ADDED: adviser signature
Browse files Browse the repository at this point in the history
  • Loading branch information
AleixMT committed Aug 22, 2024
1 parent d40feab commit 7f07100
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
7 changes: 7 additions & 0 deletions data/adviser.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "{{NAME}}",
"email": "{{EMAIL}}",
"position": "{{POSITION}}",
"linkedin": "{{LINKEDIN}}"
}

8 changes: 6 additions & 2 deletions tools/setSecrets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ PROJECT_FOLDER="$(cd "$(dirname "$(realpath "$0")")/../" &>/dev/null && pwd)"

set_secret()
{
gh secret set "$1" --body "$2" -r ASBTEC/email-signatures-asbtec
echo "with value: $2"

if gh secret set "$1" --body "$2" -r ASBTEC/email-signatures-asbtec; then
echo "Setting secret $1 with value: $2"
else
echo "Setting secret $1 failed"
fi
}

# Path to the file
Expand Down

0 comments on commit 7f07100

Please sign in to comment.