Skip to content

✨ Quick 'n' dirty RSS feed link #130

✨ Quick 'n' dirty RSS feed link

✨ Quick 'n' dirty RSS feed link #130

Workflow file for this run

name: Build and deploy
on:
push:
branches:
- main
paths:
- "src/**"
- "!src/blog/drafts/**"
- ".eleventy.js"
workflow_dispatch:
concurrency:
group: deploy
cancel-in-progress: true
jobs:
build:
name: Build website
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache-dependency-path: ${{ env.BUILD_PATH }}/package-lock.json
- name: Install dependencies
uses: ./.github/workflows/actions/install-dependencies
- name: Build Eleventy
run: npm run build
- name: Save artifact
uses: actions/upload-artifact@v3
with:
name: beeps-website
path: _site
retention-days: 1
deploy:
name: Deploy to server
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: beeps-website
- name: Upload files
uses: up9cloud/[email protected]
env:
HOST: ${{ secrets.SSH_HOST }}
USER: ${{ secrets.SSH_USER }}
KEY: ${{ secrets.SSH_KEY }}
TARGET: ${{ secrets.SSH_PATH }}
ARGS: -avP --compress --delete-after --human-readable