Skip to content

build(deps): bump express from 4.18.2 to 4.19.2 in /website #192

build(deps): bump express from 4.18.2 to 4.19.2 in /website

build(deps): bump express from 4.18.2 to 4.19.2 in /website #192

name: Deploy Website
on:
push:
branches:
- stonedb-5.7-dev
paths:
- 'Docs/**'
- 'docs/**'
- 'website/**'
jobs:
deploy:
name: Deploy Website
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies and build website
run: cd website && yarn install --frozen-lockfile && yarn build
- name: Deploy with Rsync
uses: burnett01/rsync-deployments@5.2.1
with:
switches: -avz --delete
path: website/build/
remote_path: ${{ secrets.TARGET }}
remote_host: ${{ secrets.REMOTE_HOST }}
remote_user: ${{ secrets.REMOTE_USER }}
remote_key: ${{ secrets.ACCESS_TOKEN }}