Skip to content

Commit 52bd404

Browse files
committed
Create documentation workflow
1 parent 87d8d18 commit 52bd404

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/main.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Generate Documentation
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
repository_dispatch:
7+
types: [ generate ]
8+
workflow_dispatch:
9+
schedule:
10+
- cron: '15 5 * * *'
11+
12+
permissions:
13+
contents: write
14+
15+
jobs:
16+
build:
17+
# Only run scheduled workflows on the main repository; prevents people
18+
# from using build minutes on their forks.
19+
if: github.repository == 'libgit2/www.libgit2.org-docs'
20+
name: "Generate documentation"
21+
runs-on: "ubuntu-latest"
22+
steps:
23+
- name: Check out repository
24+
uses: actions/checkout@v4
25+
with:
26+
path: docs
27+
fetch-depth: 0
28+
- name: Generate documentation
29+
run: |
30+
npm install
31+
./generate ..
32+
working-directory: docs/_generator
33+
- name: Examine repository
34+
run: git status
35+
working-directory: docs

0 commit comments

Comments
 (0)