Skip to content

Commit

Permalink
fix: Fix build and deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
grossbart committed Feb 6, 2020
1 parent 974559a commit a6e5d53
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 12 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: GitHub Pages
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.ACTIONS_DEPLOY_KEY }}
BRANCH: gh-pages
FOLDER: build
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a6e5d53

Please sign in to comment.