-
Notifications
You must be signed in to change notification settings - Fork 6
73 lines (62 loc) · 2.11 KB
/
doc.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
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
name: Deploy DocC Documentation to Github Pages
on:
# Runs on pushes targeting the master branch
push:
branches: ["main"]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
env:
SCHEME: Notifly
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# One deployment deploy job since we're just deploying
deploy:
environment:
# Must set to this for deploying to GitHub Pages
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v4
with:
enablement: true
- name: Select Xcode 16.1
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '16.1.0'
- name: Verify Swift Version
run: swift --version
- name: Build DocC
run: |
swift package resolve;
xcodebuild docbuild \
-scheme $SCHEME \
-derivedDataPath /tmp/docbuild \
-destination 'generic/platform=iOS' \
CODE_SIGNING_ALLOWED=NO
echo "Archiving documentation..."
$(xcrun --find docc) process-archive \
transform-for-static-hosting /tmp/docbuild/Build/Products/Debug-iphoneos/$SCHEME.doccarchive \
--output-path docs \
--hosting-base-path ${SCHEME};
echo "** Archived documentation**"
# Define the lowercase version of SCHEME
lowerCaseScheme=$(echo $SCHEME | tr '[:upper:]' '[:lower:]')
# Use the lowercase variable in the redirect script
echo "<script>window.location.href += \"/documentation/${lowerCaseScheme}\"</script>" > docs/index.html;
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload only docs directory
path: 'docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1