Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
loki077 committed Dec 30, 2024
1 parent 0808450 commit 06bf073
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/carbonix_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -518,3 +518,16 @@ jobs:
name: ${{ env.folder_name }}
path: ${{ env.folder_name }}.zip
retention-days: 15

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_S3_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_S3_SECRET_ACCESS_KEY }}
aws-region: us-east-1

- name: Upload zipped folder to S3
run: |
PATH_TO_S3=${{ needs.setup-s3-path.outputs.s3_path }}
echo "Uploading to: $PATH_TO_S3"
aws s3 cp ${{ env.folder_name }}.zip $PATH_TO_S3${{ env.folder_name }}.zip

0 comments on commit 06bf073

Please sign in to comment.