Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/wrkstrm/WrkstrmLog
Browse files Browse the repository at this point in the history
  • Loading branch information
rismay committed Jun 30, 2024
2 parents 3d025cc + 77b9408 commit 4df5b18
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/deploy-dooc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,22 @@ on:

jobs:
deploy_docs:
runs-on: macos-latest
strategy:
matrix:
os:
- macos-14
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
if: matrix.os == 'macos-latest' || matrix.os == 'macos-14' || matrix.os == 'self-hosted'
with:
xcode-version: '16.0.0-beta'
- name: Build Documentation
run: |
swift package --allow-writing-to-directory ./docs \
generate-documentation --target SPMConfigSteward \
--output-path ./docs
run: 'swift package --allow-writing-to-directory ./docs generate-documentation --target SPMConfigSteward --output-path ./docs'
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down

0 comments on commit 4df5b18

Please sign in to comment.