Skip to content

Commit

Permalink
feat(ci): add preview deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
rektdeckard committed Dec 29, 2024
1 parent a77e452 commit 058e298
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/dreamhost-preview-static.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build and deploy to DreamHost via sshpass

on:
push

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: preview.departuremono.com
run: |
sshpass -p "$PASSWORD" rsync -avz --delete ./dist/* $USERNAME@$HOST:$DEPLOY_PATH

0 comments on commit 058e298

Please sign in to comment.