Merge pull request #1275 from brave/master #118
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 Production | |
on: | |
push: | |
branches: [prod] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: | |
name: production | |
url: https://ads.brave.com | |
steps: | |
- name: Install pnpm | |
uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3 | |
with: | |
version: 9 | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Use Node.js | |
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 | |
with: | |
node-version-file: ".node-version" | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- run: pnpm check | |
- name: Build | |
env: | |
REACT_APP_SERVER_ADDRESS: ${{ secrets.REACT_PRODUCTION_APP_SERVER_ADDRESS }} | |
REACT_APP_GIT_SHA1: ${{ github.sha }} | |
run: | | |
export REACT_APP_BUILD_TIME=$(date -Iseconds) | |
pnpm build | |
- run: pnpm test | |
- name: Deploy static files | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_PRODUCTION_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_PRODUCTION_SECRET_ACCESS_KEY }} | |
AWS_REGION: us-west-2 | |
CLOUDFRONT_DISTRIBUTION_ID: ${{ secrets.CLOUDFRONT_PRODUCTION_DISTRIBUTION_ID }} | |
run: | | |
cd build | |
aws s3 sync ./static/ "s3://ads-ui-production/static/" --cache-control "max-age=31536000, public" | |
aws s3 sync . "s3://ads-ui-production/" --exclude "static/*" --cache-control "max-age=60, public" | |
aws cloudfront create-invalidation --distribution-id $CLOUDFRONT_DISTRIBUTION_ID --paths "/*" |