Disable CI #1
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: Documentation | |
# on: | |
# release: | |
# types: | |
# - published | |
# workflow_dispatch: | |
# jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Generate Documentation | |
# uses: SwiftDocOrg/swift-doc@master | |
# with: | |
# base-url: /composable-core-location/ | |
# format: html | |
# inputs: Sources/ComposableCoreLocation | |
# module-name: ComposableCoreLocation | |
# output: Documentation | |
# - name: Update Permissions | |
# run: 'sudo chown --recursive $USER Documentation' | |
# - name: Deploy to GitHub Pages | |
# uses: JamesIves/github-pages-deploy-action@releases/v3 | |
# with: | |
# ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
# BRANCH: gh-pages | |
# FOLDER: Documentation |