-
Notifications
You must be signed in to change notification settings - Fork 13
79 lines (59 loc) · 1.66 KB
/
publish-docs.yaml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: Publish Docs
on:
push:
branches: [ main ]
permissions:
contents: write
concurrency:
group: publish-docs-${{github.ref_name}}
cancel-in-progress: false
jobs:
build:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_15.2.app/Contents/Developer
- run: |
mkdir -p docs
mkdir -p allsgs
mkdir -p sgs
- name: Build Symbol Graph
run: |
swift build -Xswiftc -emit-symbol-graph -Xswiftc -emit-symbol-graph-dir -Xswiftc allsgs
cp allsgs/Potent*.json sgs
- name: Build Docs
run: >-
swift package
--allow-writing-to-directory docs/${{ github.ref_name }}
generate-documentation
--enable-inherited-docs
--additional-symbol-graph-dir sgs
--target PotentCodables
--output-path docs/${{ github.ref_name }}
--transform-for-static-hosting
--hosting-base-path PotentCodables/${{ github.ref_name }}
- name: Archive Docs
run: tar -czf docs.tar.gz docs
- name: Upload Docs Archive
uses: actions/upload-artifact@v4
with:
name: docs-${{ github.ref_name }}
path: docs.tar.gz
deploy:
runs-on: ubuntu-latest
needs: [ build ]
steps:
- uses: actions/checkout@v4
- name: Download Docs Archive
uses: actions/download-artifact@v4
with:
name: docs-${{ github.ref_name }}
path: '.'
- name: Unarchive Docs
run: tar -xvf docs.tar.gz
- name: Deploy Docs
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs
clean: false