We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
swift-doc
1 parent 3220b3c commit 0d2c983Copy full SHA for 0d2c983
.github/workflows/documentation.yml
@@ -0,0 +1,24 @@
1
+name: Documentation
2
+
3
+on: [push]
4
5
+jobs:
6
+ swift-doc:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v1
11
+ - name: Generate Documentation
12
+ uses: MaxDesiatov/swift-doc@prebuilt-image
13
+ with:
14
+ inputs: "Sources"
15
+ module-name: JavaScriptKit
16
+ format: html
17
+ base-url: "/JavaScriptKit"
18
+ output: ./.build/documentation
19
+ - run: sudo chmod o+r -R ./.build/documentation
20
+ - name: Deploy
21
+ uses: peaceiris/actions-gh-pages@v3
22
23
+ github_token: ${{ secrets.GITHUB_TOKEN }}
24
+ publish_dir: ./.build/documentation
0 commit comments