2024-03-07 13:49:38 +00:00
|
|
|
name: Build and copy to prod
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-copy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 20.x
|
|
|
|
- name: Install dependencies 📦
|
2024-03-07 13:51:48 +00:00
|
|
|
run: npm ci
|
2024-03-07 13:49:38 +00:00
|
|
|
- name: Build eleventy
|
2024-03-07 13:51:48 +00:00
|
|
|
run: npm run build
|
2024-03-07 13:49:38 +00:00
|
|
|
env:
|
|
|
|
NODE_ENV: production
|
|
|
|
OMNIVORE_API_KEY: ${{ secrets.OMNIVORE_API_KEY }}
|
2024-03-07 14:06:01 +00:00
|
|
|
- name: Install SSH Key
|
|
|
|
uses: shimataro/ssh-key-action@v2
|
|
|
|
with:
|
|
|
|
key: ${{ secrets.SSH_KEY }}
|
2024-03-07 14:02:57 +00:00
|
|
|
- name: Copy _site to prod
|
|
|
|
run: scp -rp _site/ ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:/var/www/html
|