Skip to content

Commit

Permalink
Update upload_config_prod.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Eshanchik authored Jan 9, 2024
1 parent 2492bfa commit 0438b1e
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/upload_config_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ on:
workflow_dispatch:
push:
branches:
- dev
- main
paths:
- 'contracts/configs/main.json'
- 'contracts/configs/prod.json'

jobs:
upload_chainspec_mainnet:
upload_chainspec_devnet:
runs-on: ubuntu-latest

steps:
Expand All @@ -21,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-prod | awk '{print $3}')"

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

0 comments on commit 0438b1e

Please sign in to comment.