✏️ Finish half-complete sentence on links page #126
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |