Update all non-major dependencies (#1532) #519
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 Staging | |
on: | |
push: | |
branches: [main] | |
permissions: | |
id-token: write | |
contents: read # This is required for actions/checkout | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Build | |
uses: ./.github/actions/build | |
with: | |
environment: staging | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
environment: | |
name: staging | |
url: https://talk.bravesoftware.com | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- 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 }} |