Skip to content

Commit 637ed71

Browse files
authoredJul 10, 2023
Deploy docs to github pages on merge (#89)
* add api client with grpc kotlin * add github action for docs * add pull request temporarily for testing * update the workflow * commit something outside of the github folder * move the folder * one more ci test * only publish docs on commit to main
1 parent 455f5e1 commit 637ed71

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
 

‎.github/workflows/docs.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Publish Docs
2+
on:
3+
push:
4+
branches:
5+
- main
6+
permissions:
7+
contents: write
8+
jobs:
9+
publish-docs:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v3
14+
- name: Build documentation
15+
run: ./gradlew dokkaHtml
16+
- name: Publish documentation
17+
uses: JamesIves/github-pages-deploy-action@v4
18+
with:
19+
folder: library/build/dokka/html

0 commit comments

Comments
 (0)
Failed to load comments.