Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Ramiz69/Slider
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramiz69 committed Apr 6, 2024
2 parents 9bb3414 + dec6e01 commit 8b3cfb2
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/publish-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Deploy DocC
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
runs-on: macOS-latest
environment:
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: 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 \
# --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:
name: Slider.doccarchive
path: '/'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 8b3cfb2

Please sign in to comment.