-
Notifications
You must be signed in to change notification settings - Fork 11
59 lines (56 loc) · 1.86 KB
/
swift.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
name: Swift CI
on:
# trigger this workflow whenever "main" branch has been pushed
push:
branches: [ "main" ]
# Set up GITHUB_TOKEN permission for the deployment
permissions:
contents: read
pages: write
id-token: write
# Allow workflow concurrency
# concurrency:
# group: "pages"
# cancel-in-progress: true
jobs:
deploy:
environment:
# Mandatory settings for GitHub Pages deployment
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: macos-13 # to use the latest version that is available on GitHub Actions
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1 # To set up xcode version
with:
xcode-version: 'latest-stable'
- name: Build
run: swift build
# - name: Run tests
# run: xcodebuild test -scheme ForceSimulation
- name: Build DocC
run: | # If you use docc-plugin, you might be able to use docc-plugin command instead
mkdir -p docs &&
swift package --allow-writing-to-directory docs/ForceSimulation \
generate-documentation --target ForceSimulation \
--disable-indexing \
--transform-for-static-hosting \
--hosting-base-path Grape/ForceSimulation \
--output-path docs/ForceSimulation &&
swift package --allow-writing-to-directory docs/Grape \
generate-documentation --target Grape \
--disable-indexing \
--transform-for-static-hosting \
--hosting-base-path Grape/Grape \
--output-path docs/Grape &&
swift ./DocPostprocess.swift
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload docs folder
path: 'docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1