From 99e449c3ec5a94791a8a692d4407f583aadcf637 Mon Sep 17 00:00:00 2001 From: Ilya Kharlamov Date: Fri, 26 Aug 2022 16:00:56 +0300 Subject: [PATCH] Remove workflows --- .github/workflows/docs.yml | 54 -------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml deleted file mode 100644 index 2e6644e..0000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,54 +0,0 @@ -name: Docs - -on: - push: - branches: - - master - workflow_dispatch: - -# 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: - docs: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Set up Pages - uses: actions/configure-pages@v1 - - name: Set up Swift - uses: fwal/setup-swift@v1 - with: - swift-version: '5.6' - - name: Generate Docs - uses: fwcd/swift-docc-action@v1 - with: - target: Fastis - output: ./public - transform-for-static-hosting: 'true' - disable-indexing: 'true' - hosting-base-path: fastis - - name: Upload artifact - uses: actions/upload-pages-artifact@v1 - with: - path: ./public - - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - needs: docs - - steps: - - name: Deploy Docs - uses: actions/deploy-pages@v1