Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/docc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: docc

on:
push:
branches: [ "main" ]
branches: ["**"] # TEMP
# branches: [ "main" ]

permissions:
contents: read
Expand All @@ -21,6 +22,10 @@ jobs:
runs-on: macos-latest

steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16.0

- name: Checkout code
uses: actions/checkout@v3

Expand All @@ -29,7 +34,6 @@ jobs:

- name: Build and Export DocC
run: |
sudo xcode-select -s /Applications/Xcode_16.0.app
xcodebuild docbuild \
-scheme AppState \
-derivedDataPath /tmp/docbuild \
Expand All @@ -47,7 +51,7 @@ jobs:
echo '<script>window.location.href += "/documentation/appstate"</script>' > docs/index.html

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-output
path: docs
Expand Down
Loading