diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2023-12-17 02:28:31 -0700 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2023-12-17 02:28:31 -0700 |
commit | b9c9b05ab48828575ae2574aa46644c612d4971d (patch) | |
tree | a5f20cf899c9ec63cd51241506ef6f42f458a74f /.github/workflows/build_docs.yaml | |
parent | 695d64d350ea889446445c1eeccfa6b54f3ecf4d (diff) |
generate docs
Diffstat (limited to '.github/workflows/build_docs.yaml')
-rw-r--r-- | .github/workflows/build_docs.yaml | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml deleted file mode 100644 index e0304b8..0000000 --- a/.github/workflows/build_docs.yaml +++ /dev/null @@ -1,46 +0,0 @@ -name: Publish Documentation - -on: - release: - types: - - published - - edited - push: - branches: [ master ] - -permissions: - contents: write - -concurrency: - group: ${{ github.ref }} - cancel-in-progress: true - -jobs: - generate-and-publish-docs: - runs-on: macOS-latest - steps: - - name: Get da Code - uses: actions/checkout@v4 - - name: Setup Swift - uses: swift-actions/setup-swift@v1.25.0 - with: - swift-version: '5.9' - - name: Swift Package Documentation Generator - uses: sersoft-gmbh/swifty-docs-action@v3.0.0 - with: - transform-for-static-hosting: true - hosting-base-path: swift-gopher - targets: | - GopherHelpers - swift-gopher - swiftGopherClient - output: docs - - name: Upload Docs - uses: EndBug/add-and-commit@v9 - with: - add: "docs" - message: Update Documentation - committer_name: GitHub Actions - committer_email: actions@github.com - - |