diff --git a/.github/workflows/build_docker_image.yml b/.github/workflows/build_docker_image.yml index c2b1e92..98e9e87 100644 --- a/.github/workflows/build_docker_image.yml +++ b/.github/workflows/build_docker_image.yml @@ -62,7 +62,7 @@ jobs: url: ${{ secrets.WEBHOOK_URL_3 }} - - name: Invoke deployment hook (scheduler) + name: Invoke deployment hook (stream_notifications) uses: joelwmale/webhook-action@master with: url: ${{ secrets.WEBHOOK_URL_4 }} diff --git a/scripts/env.sh b/scripts/env.sh index c181ec7..21f7e01 100644 --- a/scripts/env.sh +++ b/scripts/env.sh @@ -9,5 +9,5 @@ data=`echo $response | jq -r '.data.data'` echo "$data" | jq -r 'to_entries[] | "\(.key)=\(.value)"' | while IFS= read -r line; do key=$(echo "$line" | cut -d '=' -f 1) value=$(echo "$line" | cut -d '=' -f 2-) - echo "$key=$value" + echo "$key=\"$value\"" done