Skip to content

Added typography guide to design system. #19

Added typography guide to design system.

Added typography guide to design system. #19

Workflow file for this run

name: Deploy to Server
on:
push:
branches:
- main
jobs:
build-and-deploy:
name: Build & Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Dependencies
run: npm install
- name: Build Docs
run: npm run build
- name: Deploy to Server
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
with:
server: 86.38.202.74
username: ${{ secrets.DOCS_FTP_USERNAME }}
password: ${{ secrets.DOCS_FTP_PASSWORD }}
port: 21
protocol: ftps
local-dir: build/
dangerous-clean-slate: true