Added deploy GH action.

This commit is contained in:
Daan Vanden Bosch 2020-09-29 18:17:30 +02:00
parent 13cc04a361
commit 44ab6cbe13
2 changed files with 38 additions and 1 deletions

37
.github/workflows/deploy.yml vendored Normal file
View File

@ -0,0 +1,37 @@
name: Deploy
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Yarn cache
uses: actions/cache@v2
env:
cache-name: yarn-cache
with:
path: ~/.yarn
key: ${{ runner.os }}-deploy-${{ env.cache-name }}
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Install dependencies
uses: CultureHQ/actions-yarn@v1.0.1
with:
args: install
- name: Build
uses: CultureHQ/actions-yarn@v1.0.1
with:
args: build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.6.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: dist
CLEAN: true

View File

@ -19,7 +19,7 @@ jobs:
path: ~/.yarn
key: ${{ runner.os }}-tests-${{ env.cache-name }}
- name: Git checkout
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies