mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-05 13:47:45 +00:00
d6d8e7b532
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 6.4.0 to 7.0.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e...820762786026740c76f36085b0efc47a31fe5020) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
36 lines
961 B
YAML
36 lines
961 B
YAML
name: Publish to docs site
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
jobs:
|
|
build-docs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
|
with:
|
|
node-version-file: ".nvmrc"
|
|
cache: "npm"
|
|
cache-dependency-path: "package-lock.json"
|
|
|
|
- name: Install Node.js dependencies
|
|
run: npm ci
|
|
|
|
- name: build docs
|
|
run: npm run build:prod
|
|
|
|
- name: publish docs
|
|
uses: SamKirkland/FTP-Deploy-Action@110f9186c050f71550953127052e77650219c287 # v4.4.0
|
|
with:
|
|
server: ${{secrets.FTP_HOST}}
|
|
username: ${{secrets.DOCS_FTP_USERNAME}}
|
|
password: ${{secrets.DOCS_FTP_PASSWORD}}
|
|
local-dir: ./dist/
|
|
server-dir: ./
|
|
port: 21
|
|
protocol: ftps
|