Skip to content

Fix imported font weights #10

Fix imported font weights

Fix imported font weights #10

Workflow file for this run

name: S3 Deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
environment: production
steps:
- uses: actions/checkout@v1
- name: Configure Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
env:
VITE_API_URL: ${{ vars.VITE_API_URL }}
- name: Deploy
run: npm run deploy