Amazon web services botocore.exceptions.NoCredentialsError:无法找到凭据-Github操作

Amazon web services botocore.exceptions.NoCredentialsError:无法找到凭据-Github操作,amazon-web-services,aws-sdk,boto3,github-actions,Amazon Web Services,Aws Sdk,Boto3,Github Actions,我正在尝试使用Github操作运行AWS SDK python脚本。Github操作正在成功安装Boto3,但脚本正在执行,出现以下错误: 错误: Run python3 s3.py Traceback (most recent call last): File "s3.py", line 5, in <module> response = s3.list_buckets() File "/opt/hostedtoolcache/Pyth

我正在尝试使用Github操作运行AWS SDK python脚本。Github操作正在成功安装Boto3,但脚本正在执行,出现以下错误:

错误:

Run python3 s3.py
Traceback (most recent call last):
  File "s3.py", line 5, in <module>
    response = s3.list_buckets()
  File "/opt/hostedtoolcache/Python/3.8.6/x64/lib/python3.8/site-packages/botocore/client.py", 
  File "/opt/hostedtoolcache/Python/3.8.6/x64/lib/python3.8/site-packages/botocore/signers.py", line 162, in sign
    auth.add_auth(request)
  File "/opt/hostedtoolcache/Python/3.8.6/x64/lib/python3.8/site-packages/botocore/auth.py", line 357, in add_auth
    raise NoCredentialsError
botocore.exceptions.NoCredentialsError: Unable to locate credentials
Error: Process completed with exit code 1.
s3.py

请根据评论提供相关指南。


解决方案是env变量集不正确。正确的是
AWS\u-ACCESS\u-KEY\u-ID
AWS\u-SECRET\u-ACCESS\u-KEY
AWS\u-DEFAULT\u-REGION
中所示的
AWS\u-ACCESS\u-KEY\u-ID
AWS\u-SECRET\u-ACCESS\u-KEY
AWS\u-DEFAULT\u-REGION
可以尝试使用环境变量吗。谢谢,没问题。如果你不介意的话,我会提供答案。如蒙接受,将不胜感激。
name: Python package
on: [push]
jobs:
  deploy:
    name: sample code
    runs-on: ubuntu-latest

    steps:
    - name: checkout repo content
      uses: actions/checkout@v2 # checkout the repository content to github runner.
    - name: setup python
      uses: actions/setup-python@v2
      with:
        python-version: 3.8 
    - name: Upgrade PIP
      run: |
          /opt/hostedtoolcache/Python/3.8.6/x64/bin/python -m pip install --upgrade pip
    - name: install boto3
      run: |
          python -m pip install boto3   
    - name: execute script 
      env:
          aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
          aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
          aws-region: us-east-1
      run: |
          python3 s3.py

import boto3

# Retrieve the list of existing buckets
s3 = boto3.client('s3')
response = s3.list_buckets()

# Output the bucket names
print('Existing buckets:')
for bucket in response['Buckets']:
    print(f'  {bucket["Name"]}')