Skip to content

Commit

Permalink
Update upload_config_dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Eshanchik authored Jan 9, 2024
1 parent 0812bb3 commit 0c081c2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/upload_config_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@ jobs:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-2
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_NEW }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_NEW }}
aws-region: us-east-1

- name: Extract bucket name
id: extract_bucket
run: echo "::set-output name=bucket_name::$(aws s3 ls | grep bridge-config-dev | awk '{print $3}')"

- name: Upload config
run: |
aws s3 cp contracts/configs/dev.json s3://bridge-config.ambrosus-dev.io/index.html --content-type application/json --cache-control no-cache
aws s3 cp contracts/configs/dev.json s3://${{ steps.extract_bucket.outputs.bucket_name }}/index.html --content-type application/json --cache-control no-cache

0 comments on commit 0c081c2

Please sign in to comment.