We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0635327 commit eefc488Copy full SHA for eefc488
.github/workflows/upload-build-to-s3.yml
@@ -31,7 +31,12 @@ jobs:
31
python -m pip install --upgrade hatch
32
- name: Build distribution
33
run: hatch build
34
- # Upload a file to AWS s3
+ - name: configure aws credentials
35
+ uses: aws-actions/configure-aws-credentials@v4
36
+ with:
37
+ role-to-assume: "${{ secrets.ACTIONS_SYNC_ROLE_NAME }}"
38
+ role-session-name: gh-python
39
+ aws-region: ${{ env.AWS_REGION }}
40
- name: Copy tar gz build file to s3
41
run: |
42
aws s3 cp ./dist/aws_durable_execution_sdk_python-0.0.1.tar.gz \
0 commit comments