Skip to content

Commit

Permalink
DEVX-911
Browse files Browse the repository at this point in the history
fixing typos in entrypoint.sh
  • Loading branch information
sheaphillips committed Nov 28, 2023
1 parent 40b58d4 commit 076d1d8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ ENTITY_NAMESPACE="$INPUT_ENTITY_NAMESPACE"
TECHDOCS_S3_BUCKET_NAME="$INPUT_BUCKET_NAME"
TECHDOCS_S3_DEV_ROOT_PATH="$INPUT_S3_DEV_ROOT_PATH"
AWS_ENDPOINT="$INPUT_S3_ENDPOINT"
AWS_ACCESS_KEY_ID: "$INPUT_S3_ACCESS_KEY_ID"
AWS_SECRET_ACCESS_KEY: "$INPUT_S3_SECRET_ACCESS_KEY_ID"
AWS_REGION: "$INPUT_S3_REGION"
AWS_ACCESS_KEY_ID="$INPUT_S3_ACCESS_KEY_ID"
AWS_SECRET_ACCESS_KEY="$INPUT_S3_SECRET_ACCESS_KEY_ID"
AWS_REGION="$INPUT_S3_REGION"

echo "Building TechDocs from Markdown for entity '$ENTITY_NAMESPACE/$ENTITY_KIND/$ENTITY_NAME'"
techdocs-cli build --verbose --no-docker

if [ "$INPUT_PUBLISH" == true ]
if [ "$INPUT_PUBLISH" == "true" ]
then
echo "Publishing TechDocs to DevHub..."
echo "Bucket (secret): $TECHDOCS_S3_BUCKET_NAME"
Expand Down

0 comments on commit 076d1d8

Please sign in to comment.