diff --git a/.github/workflows/dreamhost-static.yaml b/.github/workflows/dreamhost-static.yaml new file mode 100644 index 0000000..3299e98 --- /dev/null +++ b/.github/workflows/dreamhost-static.yaml @@ -0,0 +1,51 @@ +name: Build and deploy to DreamHost via sshpass + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + run_install: false + + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + + - name: Install dependencies + run: pnpm install + + - name: Install sshpass + run: sudo apt-get install -y sshpass + + - name: Add SSH Key to known_hosts + env: + KNOWN_HOSTS_ENTRY: ${{ secrets.KNOWN_HOSTS_ENTRY }} + HOST: ${{ secrets.HOST }} + run: | + mkdir -p ~/.ssh + echo "$KNOWN_HOSTS_ENTRY" >> ~/.ssh/known_hosts + chmod 644 ~/.ssh/known_hosts + + - name: Build static site + run: pnpm build + + - name: Deploy via rsync and sshpass + env: + USERNAME: ${{ secrets.USERNAME }} + PASSWORD: ${{ secrets.PASSWORD }} + HOST: ${{ secrets.HOST }} + DEPLOY_PATH: departuremono.com + run: | + sshpass -p "$PASSWORD" rsync -avz --delete ./dist/* $USERNAME@$HOST:$DEPLOY_PATH diff --git a/index.html b/index.html index 78f754f..3a75d40 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ - + Departure Mono diff --git a/package.json b/package.json index 2c72fb4..1025524 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "private": true, "version": "1.422.0", "type": "module", + "packageManager": "pnpm@9", "scripts": { "dev": "vite", "build": "tsc -b && vite build", diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png new file mode 100644 index 0000000..f6aab3c Binary files /dev/null and b/public/favicon-16x16.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..0d3c8a2 Binary files /dev/null and b/public/favicon.ico differ