Merge pull request #449 from ambrosus/new-cfg #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upload bridge config on dev | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- dev | |
- main | |
paths: | |
- 'contracts/configs/dev.json' | |
jobs: | |
upload_chainspec_devnet: | |
runs-on: ubuntu-latest | |
steps: | |
- name: pull source | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
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://${{ steps.extract_bucket.outputs.bucket_name }}/index.html --content-type application/json --cache-control no-cache |