upgrade ui #84
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: Homepage Deploy | |
on: | |
push: | |
branches: [main] | |
paths: | |
- 'web/**' | |
- 'packages/client/**' | |
- 'packages/apps/**' | |
- '.github/workflows/deploy-home.yml' | |
jobs: | |
build-and-deploy-homepage: | |
name: Build and deploy homepage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2.0.1 | |
with: | |
version: 8.12.1 | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install --filter @biscuits/web... | |
- name: Build site | |
run: pnpm --filter @biscuits/web... run build | |
env: | |
VITE_API_ORIGIN: ${{ vars.API_ORIGIN }} | |
VITE_HOME_ORIGIN: ${{ vars.HOME_ORIGIN }} | |
VITE_PUBLIC_URL: https://biscuits.club | |
VITE_STRIPE_PUBLISHABLE_KEY: ${{ vars.STRIPE_PUBLISHABLE_KEY }} | |
- name: Deploy site to S3 | |
uses: jakejarvis/s3-sync-action@master | |
with: | |
args: --follow-symlinks --delete | |
env: | |
AWS_S3_BUCKET: ${{ secrets.S3_BUCKET_HOMEPAGE }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.DEPLOYER_AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.DEPLOYER_AWS_SECRET_ACCESS_KEY }} | |
SOURCE_DIR: './web/dist' | |
- name: Invalidate CloudFront cache | |
uses: chetan/invalidate-cloudfront-action@v2 | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.DEPLOYER_AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.DEPLOYER_AWS_SECRET_ACCESS_KEY }} | |
DISTRIBUTION: ${{ secrets.CLOUDFRONT_ID_HOMEPAGE }} | |
PATHS: '/*' | |
AWS_REGION: 'us-east-1' |