From 0cd79fd0c3cf48e5ac829e094b3f3a527277ae2c Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Tue, 20 Jun 2023 14:04:39 -0700 Subject: [PATCH] remove docs workflow --- .github/workflows/docs.yml | 30 ------------------------------ 1 file changed, 30 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 763fb72577..0000000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Docs - -on: - push: - branches: - - master - paths: - - site/content/** - -permissions: {} - -jobs: - release: - name: Deploy docs - runs-on: ubuntu-latest - steps: - - name: my-app-install token - id: github-app - uses: getsentry/action-github-app-token@v1 - with: - app_id: ${{ secrets.GH_APP_ID }} - private_key: ${{ secrets.GH_APP_PRIVATE_KEY }} - - - name: run deploy docs workflow - uses: 'sveltejs/action-deploy-docs/dispatch@main' - with: - repo: 'svelte' - branch: 'master' - docs_path: 'site/content' - token: ${{ steps.github-app.outputs.token }}