Skip to content

Commit

Permalink
Create cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vuolen authored Aug 13, 2021
1 parent 3da38f8 commit e7f7b2a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build and Deploy
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Test
run: npm run test
- name: Build
run: |
npm install
npm run build
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist

0 comments on commit e7f7b2a

Please sign in to comment.