Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Add auto documentation #11

Add auto documentation

Add auto documentation #11

Workflow file for this run

# use Ubuntu 22.04 & Node 18
# Seems like the documentation can not be deployed on pull requests, but only on pushes to main.
# See 5 on https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#creating-a-custom-github-actions-workflow-to-publish-your-site
name: Deploy documentations
on:
pull_request:
branches:
- dev
push:
branches:
- main
jobs:
backend:
runs-on: ubuntu-latest
# Set working directory of the runner
defaults:
run:
working-directory: backend
steps:
- uses: actions/checkout@v3
- name: Print file name
run: echo ${{ format('{0}/backend', github.ref_name) }}
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm ci
- name: Build documentation
run: npm run doc
# Fix permissions of the documentation folder (actions/upload-pages-artifact requirement)
- name: Fix permissions
run: |
chmod -c -R +rX "./documentation/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Upload documentation
uses: actions/upload-pages-artifact@v2
with:
name: "backend-documentation"
path: ./backend/documentation/
retention-days: 1
deploy:
# Set dependency on backend job
needs: backend
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v2
id: deployment
with:
artifact_name: "backend-documentation"