Merge pull request #1251 from overte-org/fix/entity_shutdown_crash #429
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
# Copyright 2022-2024 Overte e.V. | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Master API-docs CI Build and Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build_site: | |
runs-on: ubuntu-22.04 | |
name: Build and deploy API-docs | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
working-directory: tools/jsdoc | |
run: | | |
sudo apt update | |
sudo apt install npm nodejs | |
npm install jsdoc -g | |
npm install | |
- name: Build API-docs | |
working-directory: tools/jsdoc | |
shell: bash | |
run: | | |
jsdoc root.js -r api-mainpage.md -c config.json -d output | |
- name: Deploy API-docs | |
uses: SamKirkland/[email protected] | |
with: | |
server: www531.your-server.de | |
protocol: ftps | |
username: ${{ secrets.GHA_HETZNER_APIDOCS_FTP_USER }} | |
password: ${{ secrets.GHA_HETZNER_APIDOCS_FTP_PASS }} | |
local-dir: ./tools/jsdoc/output/ | |
server-dir: / | |
exclude: | | |
**/staging/** | |
.htaccess |