rest, users: Remove deprecated restartOnWakeup (#813) #212
Workflow file for this run
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
name: Build documentation | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
jobs: | |
build-html-man-pdf: | |
runs-on: ubuntu-latest | |
name: Build documentation | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Build | |
uses: docker://ghcr.io/kastelo/sphinx-build | |
with: | |
entrypoint: make | |
args: html man latexpdf | |
- name: Archive artifacts (html) | |
uses: actions/upload-artifact@v2 | |
if: github.event_name == 'push' | |
with: | |
name: html | |
path: _build/html | |
retention-days: 14 | |
- name: Archive artifacts (man) | |
uses: actions/upload-artifact@v2 | |
if: github.event_name == 'push' | |
with: | |
name: man | |
path: _build/man | |
retention-days: 14 | |
- name: Archive artifacts (pdf) | |
uses: actions/upload-artifact@v2 | |
if: github.event_name == 'push' | |
with: | |
name: pdf | |
path: _build/latex/*.pdf | |
retention-days: 14 |