Merge pull request #141 from simorgh3196/support-xcode16-rc #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DocC | |
on: | |
push: | |
branches: | |
- main | |
env: | |
DEVELOPER_DIR: "/Applications/Xcode_15.4.app/Contents/Developer" | |
jobs: | |
DocC: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build DocC | |
run: | | |
swift package --allow-writing-to-directory ./docs generate-documentation \ | |
--target scipio \ | |
--disable-indexing \ | |
--output-path ./docs \ | |
--transform-for-static-hosting \ | |
--hosting-base-path Scipio | |
env: | |
SCIPIO_DEVELOPMENT: 1 | |
- uses: actions/upload-pages-artifact@v2 | |
with: | |
path: docs | |
DeployDocC: | |
needs: DocC | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |