Repeat double crypto pop fix for solana #114
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: Deploy to Development2 | |
on: | |
push: | |
branches: [dev2] | |
workflow_dispatch: | |
permissions: | |
id-token: write | |
contents: read # This is required for actions/checkout | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Build | |
uses: ./.github/actions/build | |
with: | |
environment: development2 | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
environment: | |
name: development2 | |
url: https://dev2.talk.brave.software | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Configure aws credentials | |
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2 | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | |
role-session-name: github-actions-talk-brave-com-${{ github.run_id }} | |
aws-region: ${{ vars.AWS_REGION }} | |
- name: Deploy | |
uses: ./.github/actions/deploy | |
env: | |
AWS_REGION: ${{ vars.AWS_REGION }} | |
with: | |
cloudfront-distribution-id: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} | |
s3-bucket: ${{ secrets.S3_BUCKET }} |