Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/li3zhen1/Grape
Browse files Browse the repository at this point in the history
  • Loading branch information
li3zhen1 committed Oct 19, 2023
2 parents 6ac5294 + 5564612 commit 20c3d7a
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/deploy_documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Deploy DocC to GitHub Pages

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: '15.0'
- name: Build DocC
run: | # If you use docc-plugin, you might be able to use docc-plugin command instead
xcodebuild docbuild -scheme Grape \
-derivedDataPath /tmp/docbuild \
-destination 'generic/platform=iOS';
$(xcrun --find docc) process-archive \
transform-for-static-hosting /tmp/docbuild/Build/Products/Debug-iphoneos/Grape.doccarchive \
--hosting-base-path grape \
--output-path docs;
echo "<script>window.location.href += \"/documentation/grape\"</script>" > docs/index.html
- 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

0 comments on commit 20c3d7a

Please sign in to comment.