From 6859e11ab723c28a8b164695b2990b7122db517f Mon Sep 17 00:00:00 2001 From: Lipis Date: Sat, 18 Jan 2020 01:45:34 +0200 Subject: [PATCH] Remove deploy workflow (#436) --- .github/workflows/deploy.yml | 24 ------------------------ 1 file changed, 24 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 f88321cde..000000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Deploy to GitHub Pages - -on: - push: - branches: - - master -jobs: - build-and-deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - - name: Build - run: | - npm ci - npm run build - - - name: Deploy - uses: JamesIves/github-pages-deploy-action@releases/v3 - with: - ACCESS_TOKEN: ${{secrets.GH_DEPLOY}} - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - BRANCH: gh-pages - FOLDER: build