Skip to content

chore(deps): update pnpm to v10.27.0 (#1621) #674

chore(deps): update pnpm to v10.27.0 (#1621)

chore(deps): update pnpm to v10.27.0 (#1621) #674

name: Deploy to Staging
on:
workflow_dispatch:
push:
branches: [master]
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: staging
url: https://ads.bravesoftware.com
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Install pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
- name: Use Node.js
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version-file: ".node-version"
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- run: pnpm check
- name: Build
env:
REACT_APP_SERVER_ADDRESS: ${{ secrets.REACT_STAGING_APP_SERVER_ADDRESS }}
REACT_APP_GIT_SHA1: ${{ github.sha }}
run: |
export REACT_APP_BUILD_TIME=$(date -Iseconds)
pnpm build
- name: Deploy static files
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_STAGING_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_STAGING_SECRET_ACCESS_KEY }}
AWS_REGION: us-west-2
CLOUDFRONT_DISTRIBUTION_ID: ${{ secrets.CLOUDFRONT_STAGING_DISTRIBUTION_ID }}
run: |
cd build
aws s3 sync ./static/ "s3://ads-ui-staging/static/" --cache-control "max-age=31536000, public"
aws s3 sync . "s3://ads-ui-staging/" --exclude "static/*" --cache-control "max-age=60, public"
aws cloudfront create-invalidation --distribution-id $CLOUDFRONT_DISTRIBUTION_ID --paths "/*"