We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0ff306 commit c8a4c94Copy full SHA for c8a4c94
1 file changed
.github/workflows/deploy.yml
@@ -63,7 +63,7 @@ jobs:
63
- name: Set up boilerplate config.json
64
if: github.repository == inputs.template-repository-name
65
run: |
66
- functionName=$(echo "${{ github.event.repository.name }}" | gsed -E 's/([A-Z])([A-Z]*)/\L\1\2/g' | gsed -E 's/-([a-z])/\U\1/g' | tr -d '-')
+ functionName=$(echo "${{ github.event.repository.name }}" | sed -E 's/([A-Z])([A-Z]*)/\L\1\2/g' | sed -E 's/-([a-z])/\U\1/g' | tr -d '-')
67
echo "{\"EvaluationFunctionName\": \"$functionName\"}" > config.json
68
69
- name: Check for config.json
0 commit comments