Pārlūkot izejas kodu

Merge pull request #2159 from onevcat/fix/remove-doc-action

Remove the documentation action
Wei Wang 2 gadi atpakaļ
vecāks
revīzija
2ecee7da4f
1 mainītis faili ar 0 papildinājumiem un 33 dzēšanām
  1. 0 33
      .github/workflows/documentation.yaml

+ 0 - 33
.github/workflows/documentation.yaml

@@ -1,33 +0,0 @@
-name: Documentation
-
-on:
-  workflow_dispatch: {}
-  push:
-    branches:
-      - master
-    paths:
-      - .github/workflows/documentation.yaml
-      - Sources/**.swift
-
-jobs:
-  build:
-    runs-on: ubuntu-latest
-
-    steps:
-      - name: Checkout
-        uses: actions/checkout@v3
-      - name: Generate Documentation
-        uses: SwiftDocOrg/swift-doc@master
-        with:
-          inputs: "Sources"
-          output: "Documentation"
-          format: "html"
-          module-name: "Kingfisher"
-          base-url: "/"
-      - name: Upload Documentation Netlify
-        uses: netlify/actions/cli@master
-        with:
-          args: deploy --dir=Documentation --prod
-        env:
-          NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
-          NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}