-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
19 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,32 +19,24 @@ jobs: | |
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
steps: | ||
# - name: Setup Xcode version | ||
# uses: maxim-lobanov/[email protected] | ||
# with: | ||
# xcode-version: latest | ||
# - name: Checkout 🛎️ | ||
# uses: actions/checkout@v3 | ||
- name: Setup Xcode version | ||
uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: latest | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v3 | ||
# - name: Build DocC | ||
# run: | | ||
# xcodebuild docbuild -scheme Slider \ | ||
# -derivedDataPath /tmp/docbuild \ | ||
# -destination 'generic/platform=iOS'; | ||
# $(xcrun --find docc) process-archive \ | ||
# transform-for-static-hosting /tmp/docbuild/Build/Products/Debug-iphoneos/Slider.doccarchive \ | ||
# --hosting-base-path Slider \ | ||
# --hosting-base-path master \ | ||
# --output-path docs; | ||
# echo "<script>window.location.href += \"/documentation/slider\"</script>" > docs/index.html; | ||
- name: Fix permissions | ||
run: | | ||
chmod -v -R +rX "_site/" | while read line; do | ||
echo "::warning title=Invalid file permissions automatically fixed::$line" | ||
done | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: 'docs' | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 | ||
- name: Fix permissions | ||
uses: actions/[email protected] | ||
with: | ||
destination: ./docs | ||
|