-
Notifications
You must be signed in to change notification settings - Fork 37
45 lines (40 loc) · 1.22 KB
/
documentation.yml
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
41
42
43
44
name: Documentation
on:
push:
branches:
- release/4_0
# ^ for now, we only want to use the v4.0 release branch.
jobs:
build:
runs-on: ubuntu-latest
container:
image: swift:5.10
steps:
- uses: actions/checkout@v4
- name: Build Docs
run: |
mkdir -p ./gh-pages
swift package --allow-writing-to-directory ./gh-pages/docs \
generate-documentation --include-extended-types \
--disable-indexing \
--output-path ./gh-pages/docs \
--transform-for-static-hosting \
--hosting-base-path OpenAPIKit \
--target OpenAPIKit
- uses: actions/cache/save@v4
with:
path: gh-pages
key: ${{ github.run_number }}-pages
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/cache/restore@v4
with:
path: gh-pages
key: ${{ github.run_number }}-pages
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
folder: gh-pages
branch: gh-pages