lewisdale.dev/.gitea/workflows/build-and-copy.yaml
Lewis Dale 05beb4ef9b
All checks were successful
Build and copy to prod / build-and-copy (push) Successful in 1m50s
Always write to cache
2024-03-08 08:29:28 +00:00

36 lines
1.0 KiB
YAML

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 📦
run: npm ci
- name: Cache build
id: cache-eleventy-build
uses: actions/cache@v4
with:
path: .cache
key: cache-eleventy-build-${{ gitea.run_id }}
restore-keys: |
cache-eleventy-build
- name: Build eleventy
run: npm run build
env:
NODE_ENV: production
OMNIVORE_API_KEY: ${{ secrets.OMNIVORE_API_KEY }}
- name: Install SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_KEY }}
known_hosts: ${{ secrets.SSH_KNOWN_HOSTS }}
- name: Copy _site to prod
run: scp -rp _site/* ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:/var/www/blog/