Closed nkoenig closed 2 years ago
I moved the
upload_doc.sh
script froms3cfg
to the aws CLI tool and forgot to remove the s3cfg check. This check is no longer needed, and prevents the nightly documentation job from completing successfully.
Out of curiosity, how is the script authenticated to use the AWS cli client?
I moved the
upload_doc.sh
script froms3cfg
to the aws CLI tool and forgot to remove the s3cfg check. This check is no longer needed, and prevents the nightly documentation job from completing successfully.Out of curiosity, how is the script authenticated to use the AWS cli client?
The AWS cli client relies on the ~/.aws/credentials
file, which stores the key information. The credentials file can be generated using:
aws configure set aws_access_key_id YOUR_ACCESS_KEY
aws configure set aws_secret_access_key YOUR_SECRET_KEY
aws configure set default.region us-east-1
Signed-off-by: Nate Koenig nate@openrobotics.org
🦟 Bug fix
Summary
I moved the
upload_doc.sh
script froms3cfg
to the aws CLI tool and forgot to remove the s3cfg check. This check is no longer needed, and prevents the nightly documentation job from completing successfully.Checklist
codecheck
passed (See contributing)Note to maintainers: Remember to use Squash-Merge and edit the commit message to match the pull request summary while retaining
Signed-off-by
messages.