-
Notifications
You must be signed in to change notification settings - Fork 25
40 lines (34 loc) · 859 Bytes
/
Pipeline.yml
File metadata and controls
40 lines (34 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Pipeline
on:
push:
workflow_dispatch:
schedule:
# Every Friday at 22:00 - rerun pipeline to check for dependency-based issues
- cron: '0 22 * * 5'
permissions:
actions: write
contents: write
pages: write
id-token: write
jobs:
Documentation:
uses: ./.github/workflows/SphinxDocumentation.yml
with:
html_artifact: doc_html
latex_artifact: doc_latex
PDFDocumentation:
uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@r7
needs:
- Documentation
with:
document: "OSVVMScripts"
latex_artifact: doc_latex
pdf_artifact: doc_pdf
can-fail: 'true'
PublishToGitHubPages:
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r7
needs:
- Documentation
# - PDFDocumentation
with:
doc: doc_html