Skip to content

fix: make min width smaller #17

fix: make min width smaller

fix: make min width smaller #17

Workflow file for this run

name: "Deploy"
on:
push:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22.9.0"
cache: "npm"
cache-dependency-path: "package-lock.json"
- run: |
npm ci
npm run build
- name: Deploy
uses: burnett01/[email protected]
with:
switches: "-avrh --delete"
path: "dist/"
remote_path: "/"
remote_host: "${{ secrets.SSH_HOST }}"
remote_user: "${{ secrets.SSH_USERNAME }}"
remote_key: "${{ secrets.SSH_PRIVATE_KEY }}"