Browse Source

Remove deploy workflow (#436)

pull/439/head
Lipis 6 years ago committed by GitHub
parent
commit
6859e11ab7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      .github/workflows/deploy.yml

24
.github/workflows/deploy.yml

@ -1,24 +0,0 @@ @@ -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
Loading…
Cancel
Save