Skip to content

Test #1527 and "npm audit -fix" on dev1 #643

Test #1527 and "npm audit -fix" on dev1

Test #1527 and "npm audit -fix" on dev1 #643

name: Deploy to Development
on:
push:
branches: [dev]
workflow_dispatch:
permissions:
id-token: write
contents: read # This is required for actions/checkout
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Build
uses: ./.github/actions/build
with:
environment: development
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: development
url: https://talk.brave.software
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- 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 }}