Skip to content

centered lettering

centered lettering #23

Workflow file for this run

---
name: Deploy to Hetzner
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- uses: wlixcc/[email protected]
with:
username: ${{ secrets.USERNAME }}
server: ${{ secrets.HOSTNAME }}
port: 22
local_path: ./dist/*
remote_path: /public_html
sftp_only: true
password: ${{ secrets.PASSWORD }}