Skip to content
This repository was archived by the owner on Jan 14, 2026. It is now read-only.

chore(release): v1.2.2 - sync site.json with package version #29

chore(release): v1.2.2 - sync site.json with package version

chore(release): v1.2.2 - sync site.json with package version #29

Workflow file for this run

on:
push:
branches:
- main
name: Build and deploy website (prod)
jobs:
deploy_job:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '23'
- name: Install dependencies
run: npm install
- name: Build site
run: npx eleventy
- name: Deploy file(s)
uses: wlixcc/SFTP-Deploy-Action@v1.2.4
with:
server: ${{ secrets.sftp_server }}
username: ${{ secrets.sftp_username }}
password: ${{ secrets.sftp_password }}
port: 22
local_path: './_site/*'
remote_path: ${{ secrets.sftp_remote_path_prod }}