From 9ef8c095d3278150342dd2b7161e3a11f79e17dc Mon Sep 17 00:00:00 2001 From: ayntee Date: Mon, 12 Apr 2021 13:30:02 +0400 Subject: [PATCH] ci(deploy): remove deploy workflow (#832) --- .github/workflows/deploy.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 0bdadaf11..000000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Deploy -on: - push: - branches: main -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - - name: Build documentation - run: | - cd docs - yarn install - yarn docs:build - - name: Deploy documentation - if: success() - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs/src/.vuepress/dist - commit_message: ${{ github.event.head_commit.message }} - cname: discordeno.mod.land - keep_files: true - enable_jekyll: false